@import "./assets/css/color.css?ver=1";
@import "./assets/css/fonts.css";
:root {
    --cotrims-border-radius: .8rem;
    --cotrims-line-height: 1.4;
    --cotrims-menu-height: 144px;
}
a {
    color: var(--cotrims-color-1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
a:hover {
    color: var(--cotrims-color-2);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
::-moz-selection {
    color: var(--cotrims-color-2);
    background: var(--cotrims-color-1);
}
::selection {
    color: var(--cotrims-color-2);
    background: var(--cotrims-color-1);
}
.transition-cotrims {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
body {
    position: relative;
    font: 1em ProximaNova;
    font-weight: normal;
    margin: 0 auto;
    background-color: var(--cotrims-color-bg);
    height: 100%;
}
body.rtl-mode {
    text-align: right;
}
body.ltr-mode {
    text-align: left;
}
body, html {
    height: 100%;
    margin: 0;
    width: 100%;
}
html {
    scroll-behavior: smooth;
}
.clear-n {
    clear: both;
}
#main-body-cotrims {
    margin: 0 auto;
    width: 100%;
}
*:focus-visible {
    outline: none !important;
}
.img-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 101%;
    height: 101%;
    object-fit: cover;
    -o-object-fit: cover;
}
.img-contain {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    -o-object-fit: contain;
}
.limit-line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--cotrims-color-1);
    --bs-btn-border-color: var(--cotrims-color-1);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--cotrims-color-4);
    --bs-btn-hover-border-color: var(--cotrims-color-4);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--cotrims-color-1);
    --bs-btn-active-border-color: var(--cotrims-color-1);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--cotrims-color-1);
    --bs-btn-disabled-border-color: var(--cotrims-color-1);
}
.btn-outline-primary {
    --bs-btn-color: var(--cotrims-color-1);
    --bs-btn-border-color: var(--cotrims-color-1);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--cotrims-color-1);
    --bs-btn-hover-border-color: var(--cotrims-color-1);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--cotrims-color-1);
    --bs-btn-active-border-color: var(--cotrims-color-1);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--cotrims-color-1);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--cotrims-color-1);
    --bs-gradient: none;
}
.btn-cotrims {
    padding: .55rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50rem;
    min-width: 150px;
    text-align: center;
}
.cotrims-navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.cotrims-top-nav {
    position: relative;
    width: 100%;
    background-color: var(--cotrims-color-1);
    color: #ffffff;
}
.cotrims-top-nav ul {
    margin: 0;
    padding: 0;
}
.cotrims-top-nav li span,
.cotrims-top-nav li a {
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: inline-block;
    font-weight: bold;
    font-size: 1rem;
    min-width: 170px;
    text-align: center;
}
.cotrims-top-nav li.active span,
.cotrims-top-nav li.active a {
    color: var(--cotrims-color-2);
    background-color: #ffffff;
}
.cotrims-top-nav li:not(:last-child) {
    border-right: 1px solid #ffffff;
}
.live-btn {
    border: 1px solid #FE0000;
    background-color: #ffffff;
    border-radius: 50rem;
    color: var(--cotrims-color-2);
    font-weight: bold;
    padding: .45rem 1rem;
    font-size: 1rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.live-btn:hover {
    color: #003467;
    background-color: var(--cotrims-color-bg);
}
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #FE0000;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    display: inline-block;
}
.live-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(254, 0, 0, 0.8);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.5;
    -webkit-animation: pulse 1.5s infinite ease-out;
    animation: pulse 1.5s infinite ease-out;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.7);
        transform: translate(-50%, -50%) scale(2.7);
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.7);
        transform: translate(-50%, -50%) scale(2.7);
        opacity: 0;
    }
}
.navbar-cotrims {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
}
.navbar-logo {
    display: inline-block;
    height: 50px;
    width: auto;
}
.navbar-cotrims .nav-link {
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--cotrims-color-text);
}
.navbar-cotrims .nav-link:hover {
    color: var(--cotrims-color-2);
}
.navbar-cotrims .nav-item.active .nav-link {
    font-weight: bold;
}
.navbar-cotrims .nav-item.normal-weight .nav-link {
    font-weight: normal;
}
.navbar-cotrims .dropdown-toggle::after {
    display: none;
}
.navbar-cotrims .dropdown-menu {
    border: none;
    border-radius: .5rem;
    box-shadow: 0 0 4px rgba(88, 88, 88, 0.19);
    -webkit-box-shadow: 0 0 4px rgba(88, 88, 88, 0.19);
    background-color: #ffffff !important;
    padding: .75rem 0;
}
.navbar-cotrims .dropdown-menu li:not(:last-child) {
    margin-bottom: .5rem;
}
.navbar-cotrims .dropdown-item {
    font-weight: normal;
    color: var(--cotrims-color-2);
    border-radius: 0;
    background: none !important;
    text-align: center;
    font-size: 1rem;
}
.navbar-toggler {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
#footer {
    position: relative;
    width: 100%;
    border-top: 5px solid var(--cotrims-color-1);
    padding: 1.5rem 0;
    background-color: #ffffff;
}
.copyright-footer {
    color: var(--cotrims-color-3);
    font-size: .95rem;
    font-weight: normal;
    margin-bottom: 0;
}
.copyright-footer strong {
    font-weight: bold;
}
.logo-footer {
    display: inline-block;
    width: auto;
    height: 40px;
}
.pt-page {
    padding-top: var(--cotrims-menu-height);
}
.player-section {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    border-radius: .75rem;
    background-color: #000000;
}
.player-section-home {
    padding-top: 70%;
    height: 100%;
}
.player-section-page {
    position: relative;
    width: 70%;
}
.player-parent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.player-parent video {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.player-parent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(216, 216, 216, .5);
    z-index: 2;
    cursor: pointer;
}
.player-parent.active::before {
    display: none;
}
.play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    text-align: center;
    font-size: 7rem;
    color: var(--cotrims-color-1) !important;
}
.player-parent:hover .play-video {
    opacity: .9;
}
.banner-live {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: .75rem;
    overflow: hidden;
    min-height: 330px;
}
.banner-live img {
    object-position: center top;
    -o-object-position: center top;
    z-index: 1;
}
.banner-live .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--cotrims-color-2-opacity90);
    padding: 1.5rem;
    z-index: 2;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.banner-live:hover img {
    opacity: .9;
}
.banner-live:hover .content {
    background-color: var(--cotrims-color-2);
}
.banner-live .content span {
    color: var(--cotrims-color-1);
    text-decoration: underline;
}
.banner-2 {
    position: relative;
    width: 100%;
    border-radius: .75rem;
    overflow: hidden;
}
.banner-2-logo {
    position: relative;
    width: 100%;
    display: block;
    background-color: var(--cotrims-color-4);
    padding: 1.1rem 1.8rem;
    z-index: 2;
    margin-bottom: -1px;
}
.banner-2 .img-1 {
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
}
.banner-2 .img-2 {
    display: block;
    width: 100%;
    height: auto;
}
.cotrims-box-section {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    background-color: rgba(204, 204, 204, 0.2);
    overflow: hidden;
}
.cotrims-box-content {
    position: relative;
    width: 100%;
    padding: 2rem 1.5rem;
}
.title-page {
    color: var(--cotrims-color-2);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: .5rem;
    line-height: 1.3;
    text-transform: uppercase;
}
.content-single-page {
    width: 100%;
    position: relative;
    color: var(--cotrims-color-3);
    font-weight: normal;
    font-size: 1.2rem;
    line-height: var(--cotrims-line-height);
    text-align: justify;
}
.content-single-page h2 {
    margin-bottom: .8rem;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--cotrims-color-2);
}
.content-single-page h3 {
    margin-bottom: .8rem;
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--cotrims-color-2);
}
.content-single-page h4 {
    margin-bottom: .8rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--cotrims-color-2);
}
.content-single-page h5 {
    margin-bottom: .8rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--cotrims-color-2);
}
.content-single-page h6 {
    margin-bottom: .8rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--cotrims-color-2);
}
.content-single-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.content-single-page li {
    position: relative;
    margin-bottom: .3rem;
}
.content-single-page li::before {
    content: '- ';
}
.content-single-page img {
    max-width: 100% !important;
    display: block;
    margin: 0 auto 1.5rem;
}
.content-single-page p {
    margin-bottom: .45rem;
}
.content-single-page strong {
    font-weight: bold;
}
.content-single-page a {
    text-decoration: underline;
    color: var(--cotrims-color-1);
}
.content-single-page a:hover {
    color: var(--cotrims-color-2);
}
.single-page-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}
.single-page-thumb img {
    object-position: center right;
    -o-object-position: center right;
}
.table-parent-section {
    position: relative;
    width: 100%;
}
.table-cat-section {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}
.table-header {
    position: relative;
    width: 100%;
    border-radius: 50rem;
    background-color: var(--cotrims-color-2);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: normal;
    padding: .75rem 1rem;
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.table-data-row {
    position: relative;
    width: 100%;
    border-radius: 50rem;
    background-color: #ffffff;
    color: var(--cotrims-color-2);
    font-size: 1.2rem;
    font-weight: normal;
    padding: .75rem 1rem;
    margin-bottom: .8rem;
    line-height: 1.4;
}
.contact-item {
    position: relative;
    width: 100%;
    margin-bottom: 1.25rem;
}
.contact-item svg {
    height: 31px;
    width: 30px;
    display: block;
}
.contact-item h6 {
    color: var(--cotrims-color-2);
    font-weight: normal;
    font-size: 1.1rem;
    margin-bottom: 0;
    width: 100px;
}
.contact-item a {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--cotrims-color-3);
    margin-bottom: 0;
    text-decoration: underline;
    white-space: nowrap;
}
.contact-item a:hover {
    color: var(--cotrims-color-2);
}
.contact-item p {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--cotrims-color-3);
    margin-bottom: 0;
    line-height: 1.4;
}
.search-header-input {
    position: relative;
    width: 100%;
    max-width: 250px;
}
.search-header-input input[type='search'] {
    display: block;
    width: 100%;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    background: rgba(200, 200, 200, 0.3) !important;
    border: 1px solid transparent !important;
    border-radius: 50rem;
    z-index: 1;
    position: relative;
    padding: .5rem 2.5rem .5rem 1rem;
}
.search-header-input input[type='search']:focus {
    border-color: var(--cotrims-color-1) !important;
}
.search-header-input svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2;
}
.dig_popmessage {
    min-height: auto !important;
}
.dig_firele {
    display: none !important;
}
.dig_popmessage .dig_lase_snap {
    display: none !important;
}
.dig_popmessage .dig_lase_message {
    font-size: .75rem !important;
    font-weight: bold !important;
}
.dig_success_msg .dig_lase_message {
    color: #00DB82 !important;
}
.dig_critical_msg .dig_lase_message {
    color: #fe004d !important;
}
.dig_notice_msg .dig_lase_message {
    color: #FFC300 !important;
}
.dig_lasele {
    padding: 1.25rem !important;
}
.dig_popmessage_contents > .dig_lasele {
    left: 0 !important;
    right: 0 !important;
}
.dig_popdismiss {
    top: 50% !important;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
html[dir="rtl"] .dig_popdismiss {
    left: .5rem !important;
    right: auto !important;
}
html[dir="ltr"] .dig_popdismiss {
    right: .5rem !important;
    left: auto !important;
}
.dig_popmessage_contents {
    position: relative;
    border-radius: .5rem !important;
}
.login-logo {
    display: block;
    margin: 0 auto 3.5rem;
    max-width: 100%;
    height: auto;
}
.login-box-section {
    position: relative;
    width: 100%;
    background-color: #F4F4F4;
    min-height: 350px;
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-box-section h3.title,
.login-box-section .minput label {
    color: var(--cotrims-color-2);
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 2rem !important;
    text-align: center;
    display: block !important;
}
.login-box-section .dig_sml_box_msg_head,
.login-box-section .dig_sml_box_msg {
    display: none;
}
#first_name,
#last_name,
.login-box-section .mobile_field,
.login-box-section .dig-login-otp {
    background: #ffffff !important;
    border: 1px solid rgba(110, 110, 110, 0.5) !important;
    border-radius: 50rem !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    color: var(--cotrims-color-2);
    font-weight: normal;
    letter-spacing: 4px;
    padding: .8rem 1.5rem !important;
}
#first_name,
#last_name {
    letter-spacing: unset;
}
.login-box-section .submit-profile-btn,
.login-box-section .digits_login_via_otp,
.login-box-section .dig_login_va_otp {
    background: var(--cotrims-color-1) !important;
    color: #ffffff !important;
    border-radius: 50rem !important;
    border: none !important;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.login-box-section .submit-profile-btn:hover,
.login-box-section .digits_login_via_otp:hover,
.login-box-section .dig_login_va_otp:hover {
    background: var(--cotrims-color-4) !important;
}
.login-box-section .submit-profile-btn {
    padding: .8rem;
}
.login-box-section .minput_inner {
    margin-top: 0 !important;
}
.dig_resendotp {
    font-size: .95rem !important;
    margin-top: 1rem !important;
}
.back-to-mobile {
    position: relative;
    width: 100%;
    text-align: center;
    padding: .5rem;
    color: var(--cotrims-color-1);
    font-size: .95rem;
    font-weight: normal;
    visibility: hidden;
    opacity: 0;
}
.back-to-mobile.active {
    visibility: visible;
    opacity: 1;
}
.back-to-mobile span {
    cursor: pointer;
}
.back-to-mobile span:hover {
    color: var(--cotrims-color-4);
}
.file-box-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: .8rem;
    box-shadow: 0 13px 10px -10px rgba(204, 219, 243, 1);
    -webkit-box-shadow: 0 13px 10px -10px rgba(204, 219, 243, 1);
    padding: 1.25rem;
    text-align: center;
}
.file-box-item .icon {
    position: relative;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    background-color: #EEF3FB;
    margin: 0 auto 1rem;
    border: 6px solid #CCDBE9;
}
.file-box-item .icon.pdf::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     background: url("./assets/img/pdf.svg") no-repeat center center;
     background-size: 35%;
 }
.file-box-item .icon.video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("./assets/img/play-2.svg") no-repeat 55% center;
    background-size: 35%;
}
.file-box-item h4 {
    color: var(--cotrims-color-3);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.file-box-item .btn {
    margin-top: auto;
}
#videoModal {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
#videoModal .modal-content {
    background-color: transparent;
    border: none;
    border-radius: 0;
}
#videoModal .btn-close {
    width: 1.3em;
    height: 1.3em;
    background: transparent var(--bs-btn-close-bg) center/1.3em auto no-repeat;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
#videoModal .modal-header {
    border: none;
}
#videoModal .modal-header h4 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0;
}
.video-modal-frame {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    padding-top: 56.25%;
}
.video-modal-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* start chat */
#chat-container {
    position: fixed;
    bottom: .8rem;
    right: 2.5rem;
    z-index: 1000;
}
.chat-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15) !important;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15) !important;
    background: #EB7D00;
    background: -o-radial-gradient(circle, rgba(235, 125, 0, 1) 0%, rgba(255, 97, 0, 1) 100%);
    background: radial-gradient(circle, rgba(235, 125, 0, 1) 0%, rgba(255, 97, 0, 1) 100%);
}
.chat-btn:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) !important;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) !important;
}
.chat-btn svg {
    height: 1.5rem;
    width: auto;
    display: inline-block;
}
.chat-btn svg path {
    fill: #ffffff;
}
#chat-box {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: .8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}
#chat-header {
    position: relative;
    width: 100%;
    background: #EB7D00;
    background: -webkit-gradient(linear, left top, right top, from(rgba(235, 125, 0, 1)), to(rgba(255, 97, 0, 1)));
    background: -o-linear-gradient(left, rgba(235, 125, 0, 1) 0%, rgba(255, 97, 0, 1) 100%);
    background: linear-gradient(90deg, rgba(235, 125, 0, 1) 0%, rgba(255, 97, 0, 1) 100%);
    padding: .8rem 1rem;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
}
#chat-header h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}
#close-chat {
    background: none !important;
    border: none !important;
    font-size: 1rem;
    padding: 0;
    width: 1.8rem;
    height: 1.8rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: #ffffff;
}
#chat-messages {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: rgba(252, 252, 252, 0.5);
    background-image: -o-radial-gradient(rgba(235, 125, 0, 0.5) 0.5px, rgba(252, 252, 252, 0.5) 0.5px);
    background-image: radial-gradient(rgba(235, 125, 0, 0.5) 0.5px, rgba(252, 252, 252, 0.5) 0.5px);
    background-size: 10px 10px;
}
.message {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: slideIn 0.3s ease;
    animation: slideIn 0.3s ease;
}
@-webkit-keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.message.user {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.message-content {
    max-width: 85%;
    padding: .75rem 1rem;
    border-radius: 1rem;
    overflow-wrap: break-word;
    white-space: pre-line;
    word-break: break-word;
    font-size: .95rem;
    line-height: 1.6;
}
.message-content p {
    margin-bottom: 0;
}
.message-content .files {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.message .message-content {
    background: #eaeaea;
    color: #000000;
    border-radius: 1rem 1rem 1rem .25rem;
    overflow: hidden;
}
.message.user .message-content {
    background: var(--cotrims-color-1);
    color: #ffffff;
    border-radius: 1rem 1rem .25rem 1rem;
}
#chat-input-container {
    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: end;
    gap: .75rem;
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}
#chat-input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: 1px solid #ddd !important;
    border-radius: 1rem;
    padding: .6rem 1rem;
    outline: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    font-size: 1rem;
    width: 100%;
    resize: none;
    overflow-y: auto;
    min-height: 45px;
    max-height: 100px;
}
#chat-input:focus {
    border-color: var(--cotrims-color-1) !important;
}
#send-chat-btn {
    background: var(--cotrims-color-1);
    color: #ffffff;
    border: none !important;
    border-radius: 50rem;
    padding: .65rem 1rem;
    font-size: 1rem;
}
.typing-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    background: #ffffff;
    border-radius: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.typing-indicator span {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--cotrims-color-1);
    margin: 0 2px;
    -webkit-animation: typing 1.4s infinite;
    animation: typing 1.4s infinite;
}
.typing-indicator span:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
@-webkit-keyframes typing {
    0%, 60%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    30% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@keyframes typing {
    0%, 60%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    30% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
.chat-empty {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.chat-empty svg {
    height: 4.5rem;
    display: inline-block;
    width: auto;
}
.chat-empty svg path {
    fill: #9f9f9f;
}
@media only screen and (max-width: 550px) {
    #chat-container {
        right: 1rem;
    }
    .message-content {
        max-width: 90%;
        padding: .5rem 1rem;
        font-size: .9rem;
    }
    #chat-header h5 {
        font-size: .95rem;
    }
    #send-chat-btn {
        font-size: .9rem;
    }
    #chat-input {
        font-size: .9rem;
    }
}
@media only screen and (max-width: 470px) {
    #chat-box {
        width: 300px;
    }
}
/* end chat */
.cotrims-top-nav .typed-cursor {
    display: none !important;
}
.name-header {
    color: #ffffff;
    font-size: .9rem;
    margin-bottom: 0;
    line-height: 1.15;
    font-weight: normal;
}
.journal-box-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f3f3f3;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}
.journal-box-item .thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 75%;
}
.journal-box-item .content {
    position: relative;
    width: 100%;
    padding: .8rem 1.25rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.journal-box-item h3 {
    color: var(--cotrims-color-2);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: .75rem;
    line-height: 1.4;
}
.journal-box-item p {
    color: var(--cotrims-color-3);
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.content-box-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}
.content-box-item .thumb-parent {
    position: relative;
    width: 45%;
    height: 100%;
}
.content-box-item .thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 75%;
    height: 100%;
}
.content-box-item .content {
    position: relative;
    padding: 1rem 1.25rem 1rem 0;
}
.content-box-item h3 {
    color: var(--cotrims-color-2);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: .5rem;
    line-height: 1.4;
}
.content-box-item p {
    color: var(--cotrims-color-3);
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.tag-item {
    padding: .2rem 1rem;
    font-size: .85rem;
    font-weight: bold;
    min-width: auto;
}
.single-content-info {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    background-color: #f3f3f3;
    padding: 2.5rem
}
.single-content-info .date {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background-color: #DDE7F7;
    color: var(--cotrims-color-3);
    border-radius: 50rem;
    padding: 1rem 1.5rem;
    font-weight: normal;
    font-size: .9rem;
}
.single-content-info .thumb {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(2, 74, 146, 0.14);
}
.single-content-info h2 {
    color: var(--cotrims-color-2);
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.4;
}
.single-content-info h3 {
    color: var(--cotrims-color-2);
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.4;
}
.content-video-parent {
    position: relative;
    width: 100%;
    padding-top: 47%;
    overflow: hidden;
    border-radius: 1rem;
}
#content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.playlist-section {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    background-color: #f3f3f3;
    padding: 1.5rem 0;
}
.playlist-section h3 {
    color: var(--cotrims-color-2);
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: .5rem;
    line-height: 1.4;
    text-transform: uppercase;
    padding: 0 1.25rem;
}
.playlist-item {
    position: relative;
    width: 100%;
    border-bottom: 2px solid #bbc7d9;
    padding: .5rem 1.25rem;
    cursor: pointer;
}
.playlist-item:last-child {
    border-bottom: none;
}
.playlist-item .icon {
    display: inline-block;
    height: 1.7rem;
}
.playlist-item .icon path {
    fill: var(--cotrims-color-2);
}
.playlist-item:hover .icon path {
    fill: var(--cotrims-color-1);
}
.playlist-item h4 {
    color: #111B2B;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.4;
}
.playlist-item:hover h4 {
    font-weight: bold;
}
.playlist-item .play {
    color: var(--cotrims-color-2);
    font-size: 1.15rem;
    font-weight: normal;
    opacity: 0;
}
.playlist-item:hover .play {
    opacity: 1;
}
.playlist-item .time {
    background-color: var(--cotrims-color-2-opacity10);
    color: var(--cotrims-color-2);
    border-radius: .25rem;
    padding: .8rem .5rem;
    width: 100px;
    text-align: center;
}
.playlist-item:hover .time {
    background-color: var(--cotrims-color-1-opacity10);
}
.vjs-current-time {
    display: inline-block !important;
}
.file-section {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 200px;
}
.file-section .icon {
    background-color: #FFD6D6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
.file-section .icon img {
    display: inline-block;
    width: 50%;
    height: auto;
}
.file-section .content {
    padding: 2rem;
    position: relative;
}
.file-section h4 {
    color: var(--cotrims-color-2);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    width: 80%;
}
.file-section .btn {
    padding: .8rem 2rem;
    min-width: 200px;
}
.file-section .inf-tag {
    color: var(--cotrims-color-3);
    font-size: 1rem;
    font-weight: normal;
}
.file-section .inf-tag:not(:last-child)::after {
    content: '|';
    margin-left: 1rem;
    /*margin-right: 1.25rem;*/
}
.comments-section {
    position: relative;
    width: 100%;
}
.comments-section h3 {
    color: var(--cotrims-color-2);
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.comment-section .comment-item-cotrims {
    position: relative;
    width: 100%;
    background-color: rgba(204, 204, 204, 0.2);
    border-radius: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
}
.comment-section .comment-author-name {
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--cotrims-color-2);
    margin-bottom: .35rem;
}
.comment-section .date-comment {
    font-size: .85rem;
    font-weight: normal;
    color: var(--cotrims-color-3);
    margin-bottom: 0;
}
.comment-section .comment-text-content {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 0;
    padding: .7rem 0 0;
    color: var(--cotrims-color-3);
}
.comment-section .comment-text-content p {
    margin-bottom: 0;
}
.comment-section label {
    color: var(--cotrims-color-3);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .5rem;
    padding: 0 .7rem;
}
.comment-section textarea,
.comment-section input#author,
.comment-section input#email {
    width: 100%;
    border: 1px solid rgba(88, 88, 88, 0.27) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    background-color: transparent !important;
    outline: none !important;
    padding: .75rem 1.25rem;
    color: var(--cotrims-color-text);
    border-radius: 50rem;
    font-size: 1rem;
    font-weight: 500;
}
.comment-section textarea {
    height: 160px;
    min-height: 90px;
    border-radius: 1.25rem;
}
.comment-section textarea:focus,
.comment-section input#author:focus,
.comment-section input#email:focus {
    border-color: var(--cotrims-color-1) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
}
.comment-section .comment-awaiting-moderation {
    font-size: .9rem !important;
    line-height: 1.4 !important;
    font-weight: 600;
    margin: 1rem 0 0 !important;
    color: var(--cotrims-color-4);
}
.dig-elem .dig_reg_btn_password,
.dig-elem .digits_login .button {
    margin-top: 0 !important;
}
.modal-thumb {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.cotrims-box-section.calc {
    max-width: 750px;
    margin: 0 auto;
}
.cotrims-box-section.result p {
    color: var(--cotrims-color-2);
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    font-size: 1.25rem;
    margin: 0 auto;
}
.cotrims-box-section.calc input,
.cotrims-box-section.calc select {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    background-color: #ffffff !important;
    border-radius: 50rem;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    padding: .6rem 1rem;
}
.calc-btn {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 2px solid #dde7f7 !important;
    background-color: #eef3fb !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.calc-btn:hover {
    background-color: #ddebff !important;
}
.calc-btn svg {
    height: 50%;
}
.calc-btn path {
    fill: var(--cotrims-color-2);
}

@media only screen and (min-width: 576px) {

}
@media only screen and (min-width: 768px) {

}
@media only screen and (min-width: 992px) {
    .name-header br {
        display: none;
    }
}
@media only screen and (min-width: 1200px) {
    .navbar-cotrims .nav-item {
        margin: 0 .45rem;
    }
}
@media only screen and (min-width: 1400px) {

}
@media only screen and (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}

@media only screen and (max-width: 1599.98px) {
    .file-section h4 {
        font-size: 1.7rem;
        width: 100%;
    }
}
@media only screen and (max-width: 1399.98px) {

}
@media only screen and (max-width: 1199.98px) {
    .cotrims-box-content {
        padding: 0 2rem 1.5rem;
    }
    .player-section-page {
        width: 100%;
    }
    .single-content-info .thumb {
        width: 100px;
        height: 100px;
    }
    .comments-section h3,
    .playlist-section h3,
    .single-content-info h2 {
        font-size: 1.5rem;
    }
    .single-content-info h3 {
        font-size: 1rem;
    }
    .single-content-info .date {
        padding: .6rem 1.5rem;
        font-size: .85rem;
    }
}
@media only screen and (max-width: 991.98px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        --bs-gutter-x: 4rem;
    }
    :root {
        --cotrims-menu-height: 115px;
    }
    .navbar-logo {
        height: 40px;
    }
    .navbar-cotrims {
        padding: .5rem 0;
    }
    .navbar-cotrims .dropdown-item {
        text-align: left;
    }
    .cotrims-top-nav li span,
    .cotrims-top-nav li a {
        font-size: .9rem;
        min-width: 160px;
    }
    .banner-2 {
        width: 50%;
    }
    .banner-live {
        min-height: auto;
    }
    .table-header {
        font-size: 1.1rem;
    }
    .table-data-row {
        font-size: 1rem;
    }
    .cotrims-top-nav ul li:nth-child(n+3) {
        display: none;
    }
    .file-section h4 {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 767.98px) {
    .cotrims-disable-animation [data-aos-delay] {
        -webkit-transition-delay: 0s !important;
        -o-transition-delay: 0s !important;
        transition-delay: 0s !important;
    }
    .cotrims-top-nav li span,
    .cotrims-top-nav li a {
        padding: 1rem .5rem;
        font-size: .8rem;
        min-width: 130px;
    }
    .copyright-footer {
        font-size: .9rem;
    }
    #footer {
        padding: 1.25rem 0 .75rem;
    }
    .play-video {
        font-size: 5.5rem;
    }
    .table-header {
        border-radius: 1.5rem;
    }
    .table-data-row {
        border-radius: 1.5rem;
    }
    .file-box-item .icon {
        width: 80px;
        height: 80px;
        border: 5px solid #CCDBE9;
    }
    .file-box-item .icon.pdf::after {
        background-size: 30%;
    }
    .file-box-item h4 {
        font-size: 1.1rem;
    }
    .btn-cotrims {
        min-width: auto;
    }
    .name-header {
        font-size: .7rem;
    }
    .single-content-info {
        border-radius: 1.7rem;
        padding: 3rem 1.5rem 2rem;
    }
    .comments-section h3,
    .playlist-section h3,
    .single-content-info h2 {
        font-size: 1.25rem;
    }
    .single-content-info h3 {
        font-size: .9rem;
    }
    .single-content-info .thumb {
        width: 80px;
        height: 80px;
    }
    .content-video-parent {
        padding-top: 52%;
    }
    .playlist-item h4 {
        font-size: 1.1rem;
    }
    .playlist-item .time {
        padding: .7rem .5rem;
        width: 90px;
    }
    .file-section h4 {
        font-size: 1.3rem;
    }
    .file-section .content {
        padding: 1.25rem;
    }
}
@media only screen and (max-width: 575.98px) {
    .cotrims-top-nav li span,
    .cotrims-top-nav li a {
        font-size: .75rem;
        min-width: 120px;
    }
    .live-btn {
        padding: .35rem 1rem;
        font-size: .95rem;
    }
    .banner-2 {
        width: 100%;
    }
    .banner-live {
        min-height: 230px;
    }
    .banner-live .content {
        padding: 1.5rem;
        font-size: 1.35rem;
    }
    .play-video {
        font-size: 4rem;
    }
    :root {
        --cotrims-menu-height: 130px;
    }
    .content-single-page {
        font-size: 1rem;
    }
    .title-page {
        font-size: 1.5rem;
    }
    .contact-item a {
        font-size: 1.1rem;
    }
    .contact-item p {
        font-size: 1.1rem;
    }
    .file-box-item .icon {
        width: 70px;
        height: 70px;
    }
    .file-box-item h4 {
        font-size: 1rem;
    }
    .file-box-item .btn {
        width: 90%;
    }
    .journal-box-item p {
        font-size: .95rem;
    }
    .content-box-item {
        flex-direction: column;
        height: auto;
        gap: .75rem;
    }
    .content-box-item .thumb-parent {
        width: 100%;
        height: auto;
    }
    .content-box-item .thumb {
        padding-top: 53%;
        height: auto;
    }
    .content-box-item .content {
        padding: 0 1rem 1rem;
    }
    .comments-section h3,
    .playlist-section h3,
    .single-content-info h2 {
        font-size: 1.1rem;
    }
    .single-content-info h3 {
        font-size: .8rem;
    }
    .single-content-info {
        border-radius: 1.5rem;
        padding: 3rem 1rem 1rem;
    }
    .playlist-item h4 {
        font-size: 1rem;
    }
    .playlist-item .play {
        font-size: .9rem;
    }
    .content-video-parent {
        padding-top: 56.25%;
    }
    .playlist-item .time {
        padding: .5rem .25rem;
        width: 75px;
    }
    .file-section .inf-tag {
        font-size: .85rem;
    }
    .file-section .inf-tag:not(:last-child)::after {
        margin-left: .5rem;
    }
    .file-section {
        flex-direction: column;
    }
    .file-section .icon img {
        width: 50px;
    }
    .comment-section textarea,
    .comment-section input#author,
    .comment-section input#email {
        font-size: .95rem;
        padding: .5rem 1.25rem !important;
    }
    .comment-section .comment-text-content {
        font-size: .9rem;
    }
    .cotrims-box-section.calc p {
        font-size: 1.1rem;
    }
}
@media only screen and (max-width: 530.98px) {
    .cotrims-top-nav li span,
    .cotrims-top-nav li a {
        min-width: 110px;
        font-size: .7rem;
        white-space: nowrap;
    }
}
@media only screen and (max-width: 500.98px) {
    .cotrims-top-nav .container-fluid {
        --bs-gutter-x: 1rem;
    }
    .live-btn {
        padding: .35rem .65rem;
        font-size: .85rem;
    }
    .journal-box-item h3 {
        font-size: 1rem;
    }
    .journal-box-item p {
        font-size: .9rem;
    }
    .file-section h4 {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 480.98px) {
    .cotrims-top-nav li span,
    .cotrims-top-nav li a {
        min-width: 105px;
    }
}
