/********************* NORMALIZE ************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    margin-right: 0 !important;
    font-family: 'Quanty-Special';
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

iframe {
    display: block;
}

/*font*/
@font-face {
    font-family: 'Quanty-Special';
    src: url(../font/Quanty-Special.woff2);
}

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/**************************************************/
/******************** CONTENT *********************/
/**************************************************/
#denuncia_content {
    width: 100%;
    background-color: #fff;
    padding: 56px 0px 98px 0px;
    background-image: url(../image/background.png);
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.denuncia_container {
    width: 1140px;
    margin: auto;
}

h1 {
    color: #1b3854;
    font-weight: 500;
    font-size: 40px;
    line-height: 35px;
    text-transform: uppercase;
    padding-left: 42px;
    border-left: 2px solid #1b3854;
    margin-top: 14px;
}

.denuncia_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 42px;
}


h2 {
    margin-bottom: 45px;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.item-content p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}


.button_relato {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    padding: 20px 0;
    display: inline-block;
    width: 409px;
    margin-left: calc(50% - 205px);
    margin-top: 65px;
    background-image: url(../image/btn_fundo.png);
    -webkit-clip-path: polygon(0 0, 99.3% 0, 100% 100%, 0.6% 100%);
    clip-path: polygon(0 0, 99.3% 0, 100% 100%, 0.6% 100%);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    cursor: pointer;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.button_relato:hover {
    background-color: #c975ff;
}


/****** CARDS ********/
.container_cards {
    margin-top: 65px;
}

.feature {
    padding: 20px;
}

.feature__title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.8px;
}

.feature--card {
    background-color: #1b3854;
    margin-bottom: 10px;
    color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    cursor: pointer;
}

.feature--card.collapsed:hover {
    background-color: #1b3854;
}

.feature--card.collapsed {
    background-color: rgba(255, 255, 255, 0.1);
}

.feature__icon {
    width: 20px;
    margin-right: 10px;
    display: none;
}

.feature__content {
    width: 100%;
}

.feature__icon img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}

.feature__description {
    line-height: 30px;
    display: none;
    padding: 30px 15px 15px 30px;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.6px;
    line-height: 27px;
    font-weight: 400;
}

.feature__description_show {
    display: block;
}

.feature.collapsed .feature__title::after {
    content: '+';
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    color: #fff;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.feature__title::after {
    content: '-';
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #fff;
    color: #333;
    position: absolute;
    right: 0;
    width: 21px;
    text-align: center;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    line-height: 1.2;
}

/**** footer viver ****/
footer.footer {
    background-color: #f5f5f5;
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
}

.contentAboutHome {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

footer .container-footer.about {
    margin: 0 auto;
    margin-bottom: 25px;
    width: 1170px;
}

.contentAboutHome img {
    height: 50px;
    margin: auto;
    margin-right: 0;
    margin-left: 0;
}

footer p.contentSecAboutHome {
    margin-left: 50px !important;
    width: 300px;
    max-width: 100%;
    margin: auto;
    color: #b1bbc2;
    font-family: 'Quanty-Special';
}

.socialLinks {
    margin: auto;
    margin-right: 0;
}

.socialLinks a {
    margin-left: 10px;
    text-decoration: none;
    height: 24px;
    display: inline-block;
    cursor: pointer;
}

button.btnSocial {
    background-size: 104px;
    width: 24px;
    height: 24px;
    margin: 0;
    background-color: transparent;
    border: 0;
    background-image: url(../image/social.svg);
    cursor: pointer;
}

button.btnSocial.instagram {
    background-position: -37px center;
}

button.btnSocial.youtube {
    background-position: right center;
    width: 31px;
}

hr.footerHR {
    margin-top: 40px;
    margin-bottom: 40px;
    color: #dee2e6;
    border: 0;
    border-top: 1px solid #eee;
}

.linksFooter {
    margin: auto;
    margin-right: 0;
}

.linksFooter a {
    font-family: 'Lato', sans-serif;
    color: #b1bbc2;
    font-weight: 600;
    font-size: 13px;
    margin-left: 110px;
}

.tabs ul {
    width: 100%;
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

}

.tabs ul li {
    width: 33.2%;
}

.tabs ul li a {
    padding: 26px 10px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #1b3854;
    outline: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
    text-align: center;
}

.tabs ul li a:hover,
.tabs ul li a.active {
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding: 28px 10px;
    display: block;
    background-color: #c975ff;
    text-decoration: none;
    outline: none;
}

.item::before {
    cursor: pointer;
    font-weight: bold;
    background-color: #1b3854;
    padding: 25px;
    display: block;
    color: #fff;
    font-size: 28px;
    border-bottom: 1px solid #fff;
    font-weight: 500;
}

.item.active::before {
    background: #c975ff;
    color: #eee;
    font-weight: 500;
}

.item.active .item-content {
    padding: 60px 80px 70px;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.tabbed-content .tabs {
    display: none;
}

.tabbed-content .item {
    width: 100%;
    background-color: #1b3854cf;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.tabbed-content .item::before {
    content: attr(data-title);
}

.tabbed-content .item .item-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.tabbed-content .item.active .item-content {
    opacity: 1;
    visibility: visible;
    height: auto;
}


/*formularios*/
.formulario {
    color: #fff;
    font-size: 14px;
}

.control {
    font-family: 'Quanty-Special';
    background-color: #fff !important;
    border: 1px solid #1b3854 !important;
    border-bottom: 5px solid #1b3854 !important;
    font-size: 14px !important;
    margin: 0 0 20px;
    padding: 18px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all;
    width: 50%;
    cursor: text;
    color: #000;
}

.aviso_anonimo {
    font-size: 13px !important;
    text-align: left !important;
}

.email_anonimo {
    margin: 0 0 5px !important;
}

.control.fullw {
    width: 100%;
}

.campos_content {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.form-control {
    padding: 18px 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: 'Quanty-Special';
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.color--text {
    margin-right: 15px;
}

.preenchimento_obrigatorio {
    font-size: 14px !important;
    margin-bottom: 0px !important;
}

::-webkit-input-placeholder {
    color: #506172;
}

::-moz-placeholder {
    color: #506172;
}

:-ms-input-placeholder {
    color: #506172;
}

::-ms-input-placeholder {
    color: #506172;
}

::placeholder {
    color: #506172;
}

.form-exent-enviar {
    font-family: 'Quanty-Special';
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #FFF;
    margin: 0;
    padding: 8px 16px;
    border-radius: 0px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    min-width: 270px;
    height: 62px;
    background: #c975ff;
    cursor: pointer;
    border: none;
    margin: auto auto 30px auto;
    display: block;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-clip-path: polygon(4% 0, 96% 0, 100% 17%, 96% 100%, 5% 100%, 0 82%);
    clip-path: polygon(4% 0, 96% 0, 100% 17%, 96% 100%, 5% 100%, 0 82%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-exent-enviar:hover {
    -webkit-filter: brightness(1.25);
    filter: brightness(1.25);
}

.opcoes_button {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    padding: 20px 0;
    display: inline-block;
    width: 409px;
    margin-top: 10px;
    background-color: transparent;
    border: none;
    background-image: url(../image/btn_fundo.png);
    -webkit-clip-path: polygon(0 0, 99.3% 0, 100% 100%, 0.6% 100%);
    clip-path: polygon(0 0, 99.3% 0, 100% 100%, 0.6% 100%);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    cursor: pointer;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.opcoes_button:hover,
.opcoes_button-active {
    background-color: #c975ff;
}

.organiza_botoes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

#step_2-1,
#step_2-2 {
    margin-top: 60px;
}

.campos_select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.dois_campos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    border: 0.15em solid currentColor;
    -webkit-transform: translateY(-0.075em);
    -ms-transform: translateY(-0.075em);
    transform: translateY(-0.075em);
    display: -ms-grid;
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms -webkit-transform ease-in-out;
    -o-transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
    -webkit-box-shadow: inset 1em 1em #c975ff;
    box-shadow: inset 1em 1em #c975ff;
}

input[type="radio"]:checked::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

input[type="radio"]:focus {
    outline-offset: 2px;
}

.membro_conselho {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.campos_select::after {
    content: url(../image/arrow-down_p.png);
    font-size: 25px;
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #fff;
    z-index: 1;
    right: 4px;
    top: 15px;
    text-align: center;
}

.form_ativo,
.control:focus,
.control:hover {
    border-bottom: 5px solid #c975ff !important;
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

#form-sim-status,
#form-nao-status {
    color: #fff;
    float: left;
    font-size: 13px;
    line-height: 15px;
    margin: 0 0 10px;
    position: relative;
    width: 100%;
}

/***********************************/
/********** CONFIRMACAO ************/
/***********************************/

#confirmacao_content {
    width: 100%;
    background-color: #fff;
    padding: 56px 0px 98px 0px;
    background-image: url(../image/background.png);
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.confirmacao_container {
    width: 1140px;
    margin: auto;
}

.confirmacao_container .container {
    -ms-flex-align: center;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    align-items: center;
    background-color: #ffffffb8;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 80px 50px;
    ;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.confirmacao_titulo {
    color: #1b3854;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 65px;
    margin-top: 60px;
    text-align: center;
}

.btn_confirmacao {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    min-width: 350px;
}

/***********************************************/
/**************** QUEBRAS DESK *****************/
/***********************************************/
@media only screen and (max-width: 1280px) {

    .denuncia_container,
    footer .container-footer.about,
    .confirmacao_container {
        width: 1000px !important;
    }
}


/*iphone*/

select {
    background-color: #FFFFFF;
    border-radius: 0px;
    border-color: #000000;
    padding: 18px 15px;
}

select {
    -webkit-appearance: none;
}

/*@supports (-webkit-touch-callout: none) {
    .campos_select::after {
        content: none;
    }
}*/

/***********************************************/
/******************* MOBILE ********************/
/***********************************************/
@media only screen and (max-width: 1024px) {

    .contentAboutHome {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    footer p.contentSecAboutHome {
        display: none;
    }

    .socialLinks {
        margin: auto;
        margin-left: 0;
        margin-top: 20px;
    }

    .socialLinks a {
        margin-left: 0px;
        margin-right: 10px;
    }

    hr.footerHR {
        border-top: 1px solid #000;
    }

    .linksFooter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-right: auto;
        margin-left: 0px;
        gap: 15px;
    }

    .linksFooter a {
        margin-left: 0px;
    }

    .denuncia_container,
    footer .container-footer.about,
    .confirmacao_container {
        width: 90% !important;
    }

    .denuncia_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .denuncia_header img {
        width: 50%;
        height: auto;
    }

    h1 {
        padding-left: 0px;
        border-left: none;
        position: relative;
    }

    h1::before {
        content: '—';
        position: absolute;
        top: -53px;
        left: 49%;
    }

    .button_relato {
        width: 100%;
        max-width: 409px;
    }

    .item.active .item-content {
        padding: 45px 40px 50px
    }

    .item-content p {
        font-size: 18px;
    }

    .feature__title {
        font-size: 16px;
    }

    .denuncia_header {
        margin-bottom: 60px;
    }


    .tabbed-content .item::after {
        content: '▶';
        color: #fff;
        font-weight: 500;
        font-size: 14px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
        position: absolute;
        top: 32px;
        right: 18px;
    }

    .tabbed-content .item.active::after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .opcoes_button {
        width: 50%;
        max-width: 409px;
        font-size: 16px;
    }

    .organiza_botoes {
        gap: 15px;
    }

    .control {
        width: 100%;
    }

    .dois_campos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0px;
    }

    .membro_conselho {
        margin-left: 0px;
    }

    .confirmacao_container .container {
        padding: 40px 0px;
    }
}

@media only screen and (max-width: 600px) {
    .denuncia_header {
        gap: 20px;
    }


    .tabbed-content .item::after {
        top: 26px;
    }

    h1::before {
        top: -38px;
    }

    #tabs li a,
    #tabs li a.inactive {
        padding: 22px;
        font-size: 4.25vw;
    }

    h1 {
        font-size: 6.5vw;
    }

    h2 {
        font-size: 6.5vw;
        margin-bottom: 25px
    }

    .container_cards {
        margin-top: 25px;
    }

    .item.active .item-content {
        padding: 25px 20px 30px
    }

    .item-content p,
    .feature__title {
        font-size: 14px;
    }

    .button_relato {
        width: 100%;
        max-width: 409px;
        margin-left: auto;
        font-size: 15px;
        margin-top: 25px;
    }

    .feature__description {
        padding: 27px 12px 12px 23px;
        font-size: 13px;
        letter-spacing: 0.1px;
        line-height: 24px;
    }

    .feature__title::after {
        right: -30px;
    }

    .feature__title {
        width: calc(100% - 25px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .item::before {
        font-size: 18px;
    }

    .opcoes_button {
        padding: 15px 0;
        font-size: 14px;
    }

    .organiza_botoes {
        gap: 10px;
    }

    .campos_select {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
    }

    .form-control {
        width: 100%;
    }

    .form-exent-enviar {
        min-width: auto;
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .form-exent-enviar,
    .btn_confirmacao {
        height: 60px;
    }

    .campos_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 5px;
    }

    .confirmacao_titulo {
        font-size: 32px;
    }
}

@media only screen and (max-width: 390px) {
    .control,
    select  {
        font-size: 12px !important;
    }

}

@media only screen and (max-width: 330px) {
    .control,
    select {
        font-size: 11px !important;
    }

}

@media (min-width: 1024px) {
    .tabbed-content .tabs {
        display: block;
    }

    .tabbed-content .tabs li {
        display: inline-block;
    }

    .tabbed-content .tabs li a {
        display: block;
    }

    .tabbed-content .item {
        min-height: 0;
    }

    .tabbed-content .item::before {
        display: none;
    }

    .tabbed-content.tabs-side .tabs {
        width: 150px;
        float: left;
    }

    .tabbed-content.tabs-side .tabs li {
        display: block;
    }

    .tabbed-content.tabs-side .item {
        margin-left: 150px;
    }

}