label.input-toggle {
    line-height: 0;
    font-size: 0;
    display: inline-block;
    margin: 0;
}

label.input-toggle>span {
    display: inline-block;
    position: relative;
    background-image: -webkit-gradient(linear, left top, right top, from(#762d40), color-stop(50%, #762d40), color-stop(50%, #27a76a), to(#27a76a));
    background-image: -o-linear-gradient(left, #762d40 0%, #762d40 50%, #27a76a 50%, #27a76a 100%);
    background-image: linear-gradient(to right, #762d40 0%, #762d40 50%, #27a76a 50%, #27a76a 100%);
    background-size: 64px 14px;
    background-position: 0%;
    border-radius: 32px;
    width: 32px;
    height: 14px;
    -webkit-transition: background-position 0.2s ease-in;
    -o-transition: background-position 0.2s ease-in;
    transition: background-position 0.2s ease-in;
}

label.input-toggle>input:checked+span {
    background-position: -100%;
}

label.input-toggle>span:after {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    border: 0.5px solid #80808063;
    background: #f5f5f5;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 100%;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-transition: left 0.2s ease-in, background-color 0.2s ease-in, -webkit-transform 0.3s ease;
    transition: left 0.2s ease-in, background-color 0.2s ease-in, -webkit-transform 0.3s ease;
    -o-transition: left 0.2s ease-in, background-color 0.2s ease-in, transform 0.3s ease;
    transition: left 0.2s ease-in, background-color 0.2s ease-in, transform 0.3s ease;
    transition: left 0.2s ease-in, background-color 0.2s ease-in, transform 0.3s ease, -webkit-transform 0.3s ease;
}

label.input-toggle>input:checked+span:after {
    left: calc(100% - 18px);
}

label.input-toggle>span:active:after {
    -webkit-transform: translateY(-50%) scale3d(1.15, 0.85, 1);
    transform: translateY(-50%) scale3d(1.15, 0.85, 1);
}

label.input-toggle>input:disabled+span:active:after {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

label.input-toggle>input:disabled+span {
    cursor: default;
}

label.input-toggle>input:disabled+span {
    background: #919191;
}

label.input-toggle>input:disabled+span:after {
    background: orangered;
}

label.input-toggle>input {
    display: block;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}


/*---------------------------*/

@media screen and (min-width:600px) {
    .link {
        cursor: pointer !important;
    }
    body {
        font-size: 13px;
    }
    .cab_n {
        display: block;
    }
}

@media screen and (min-width:800px) {
    body {
        font-size: 13px;
    }
}

@media screen and (min-width:1024px) {
    body {
        font-size: 14px;
    }
    .pointer,
    .autor h5,
    .autor h6,
    .optcontentmenu_atv p {
        cursor: pointer;
    }
    .cab_3 {
        width: 190px !important;
    }
    .corpocontent {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 1124px;
        flex: 0 1 1124px;
    }
}


/*---------------------------*/

input.inpt_novo[type="radio"],
input.inpt_novo[type="checkbox"] {
    display: none;
}

.inpt_novo[type="radio"]+label,
.inpt_novo[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    margin-right: 32px;
    line-height: 16px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-bottom: 10px;
}

.inpt_novo[type="radio"]+label:before,
.inpt_novo[type="radio"]+label:after,
.inpt_novo[type="checkbox"]+label:before,
.inpt_novo[type="checkbox"]+label:after {
    content: '' !important;
    position: absolute;
    top: -1px;
    left: 0;
    width: 16px;
    height: 16px;
    text-align: center;
    color: white !important;
    font-family: Times;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.inpt_novo[type="radio"]+label:before {
    -webkit-box-shadow: inset 0 0 0 1px grey, inset 0 0 0 16px white, inset 0 0 0 16px red;
    box-shadow: inset 0 0 0 1px grey, inset 0 0 0 16px white, inset 0 0 0 16px red;
}

.inpt_novo[type="radio"]+label:hover {
    color: #ff4500;
    font-weight: 500;
}

.inpt_novo[type="radio"]+label:hover:before {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: change-size;
    animation-name: change-size;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
}

.inpt_novo[type="radio"]:checked+label:hover {
    color: #ff4500;
    cursor: default;
}

.inpt_novo[type="radio"]:checked+label:before {
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-name: select-radio;
    animation-name: select-radio;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: Normal;
    animation-direction: Normal;
    -webkit-box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
    box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
}

.inpt_novo[type="checkbox"]+label:hover {
    color: #ff4500;
    font-weight: 500;
}

.inpt_novo[type="checkbox"]+label:before {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: '\2714' !important;
    line-height: 17px;
    border-radius: 0;
    background-color: white !important;
    color: white !important;
    -webkit-box-shadow: inset 0 0 0 1px grey, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    box-shadow: inset 0 0 0 1px grey, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
}

.inpt_novo[type="checkbox"]+label:hover:before {
    color: white !important;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-name: change-size;
    animation-name: change-size;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
}

.inpt_novo[type="checkbox"]:checked+label:before {
    background-color: #3f4257;
    color: white !important;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-name: select-checkbox;
    animation-name: select-checkbox;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: Normal;
    animation-direction: Normal;
    -webkit-box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
    box-shadow: inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
}


/*---------------------------*/

@-webkit-keyframes change-size {
    from {
        -webkit-box-shadow: 0 0 0 0 #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
        box-shadow: 0 0 0 0 #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
    }
    to {
        -webkit-box-shadow: 0 0 0 1px #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
        box-shadow: 0 0 0 1px #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
    }
}

@keyframes change-size {
    from {
        -webkit-box-shadow: 0 0 0 0 #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
        box-shadow: 0 0 0 0 #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
    }
    to {
        -webkit-box-shadow: 0 0 0 1px #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
        box-shadow: 0 0 0 1px #3f4257, inset 0 0 0 1px #3f4257, inset 0 0 0 16px white, inset 0 0 0 16px #3f4257;
    }
}

@-webkit-keyframes select-radio {
    0% {
        -webkit-box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    }
    90% {
        -webkit-box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 2px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 2px white, inset 0 0 0 16px #ff4500;
    }
    100% {
        -webkit-box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
    }
}

@keyframes select-radio {
    0% {
        -webkit-box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    }
    90% {
        -webkit-box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 2px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 2px white, inset 0 0 0 16px #ff4500;
    }
    100% {
        -webkit-box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 3px white, inset 0 0 0 16px #ff4500;
    }
}

@-webkit-keyframes select-checkbox {
    0% {
        -webkit-box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    }
    90% {
        -webkit-box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
    }
    100% {
        -webkit-box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
    }
}

@keyframes select-checkbox {
    0% {
        -webkit-box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 0 #e97c97, inset 0 0 0 2px white, inset 0 0 0 3px #ff4500, inset 0 0 0 16px white, inset 0 0 0 16px #ff4500;
    }
    90% {
        -webkit-box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 10px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
    }
    100% {
        -webkit-box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
        box-shadow: 0 0 0 12px #f3c7d2, inset 0 0 0 0 white, inset 0 0 0 1px #ff4500, inset 0 0 0 0 white, inset 0 0 0 16px #ff4500;
    }
}