/*FONTS*/
@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: normal;
    src: url('/assets/fonts/ARIAL.woff') format('woff');
}

@font-face {
    font-family: 'Arial';
    font-style: italic;
    font-weight: normal;
    src: url('/assets/fonts/ARIALI.woff') format('woff');
}


@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: bold;
    src: url('/assets/fonts/ARIALBD.woff') format('woff');
}

@font-face {
    font-family: 'Arial';
    font-style: italic;
    font-weight: bold;
    src:  url('/assets/fonts/ARIALBI.woff') format('woff');
}

@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: bolder;
    src: url('/assets/fonts/ARIBLK.woff') format('woff');
}

@font-face {
    font-family: 'Arial';
    font-style: italic;
    font-weight: bolder;
    src: url('/assets/fonts/ARIALBLACKITALIC.woff') format('woff');
}

@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: lighter;
    src: url('/assets/fonts/ARIALLGT.woff') format('woff');
}



/*COLORS*/
.bg-white {
    background: #ffffff;
}
.bg-black {
    background: #1A1A1A;
}
.bg-purple {
    background: #890175;
}
.bg-blue {
    background: #01ABFF;
}
.bg-green {
    background: #2FD700;
}
.bg-yellow {
    background: #FFB700;
}
.bg-red {
    background: #C3012F;
}
.bg-grey {
    background: #C1C1C1;
}
.bg-light-grey {
    background: #f1f2f7;
}
.bg-dark-grey {
    background: #343434;
}

.bgc-white {
    background-color: #ffffff;
}

.bgc-black {
    background-color: #1A1A1A;
}

.bgc-purple {
    background-color: #890175;
}

.bgc-blue {
    background-color: #01ABFF;
}

.bgc-green {
    background-color: #2FD700;
}

.bgc-yellow {
    background-color: #FFB700;
}

.bgc-red {
    background-color: #C3012F;
}

.bgc-grey {
    background-color: #C1C1C1;
}
.bgc-light-grey {
    background-color: #f1f2f7;
}
.bgc-dark-grey {
    background-color: #343434;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #1A1A1A;
}

.text-purple {
    color: #890175;
}

.text-blue {
    color: #01ABFF;
}

.text-green {
    color: #2FD700;
}

.text-yellow {
    color: #FFB700;
}

.text-red {
    color: #C3012F;
}

.text-grey {
    color: #C1C1C1;
}
.text-light-grey {
    color: #f1f2f7;
}
.text-dark-grey {
    color: #343434;
}

.border-white {
    border: solid 1px  #ffffff;
}

.border-black {
    border: solid 1px  #1A1A1A;
}

.border-purple {
    border: solid 1px  #890175;
}

.border-blue {
    border: solid 1px  #01ABFF;
}

.border-green {
    border: solid 1px  #2FD700;
}

.border-yellow {
    border: solid 1px  #FFB700;
}

.border-red {
    border: solid 1px  #C3012F;
}

.border-grey {
    border: solid 1px  #C1C1C1;
}
.border-light-grey {
    border: solid 1px #f1f2f7;
}
.border-dark-grey {
    border: solid 1px  #343434;
}

/*CONTENT*/
body {
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

p, a, span, div, input, textarea, button {
    font-family: 'Arial';
    color: #6F7271;
}

label, h1, h2, h3, h4, h5, h6, input[type=button], label > span {
    font-family: 'Arial';
}

footer {
    clear: both;
    position: relative;
    bottom: 0;
    width: 100%;
}

.fs-01 {
    font-size: 5rem !important;
}

.fs-0 {
    font-size: 3rem !important;
}

.fs-7 {
    font-size: 0.75rem !important;
}

.fs-8 {
    font-size: 0.5rem !important;
}

.fs-9 {
    font-size: 0.25rem !important;
}

.fw-bold {
    font-weight: bold;
}

.popup {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 103vh;
    background: #000000DD;
    z-index: 9999;
}

.h-100vh {
    height: 100vh;
}

.hidden {
    display: none;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}


.cursor-pointer {
    cursor: pointer !important;
}
/*inputs*/
input[type=text], input[type=textarea] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input[type=button], input[type=submit] {
    border: none;
    border-radius: 25px !important;
    text-align: center;
    padding: 0.7em 3em;
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    margin: 5px 10px;
}

    input[type=checkbox] + label {
        display: inline;
    }

    input[type=checkbox]:before {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 0;
        left: 0;
        border: 2px solid #555555;
        border-radius: 3px;
        background-color: white;
    }

    input[type=checkbox]:checked:after {
        content: "";
        display: block;
        width: 5px;
        height: 10px;
        border: solid black;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg) !important;
        -ms-transform: rotate(45deg) !important;
        transform: rotate(45deg) !important;
        position: absolute;
        top: 2px;
        left: 6px;
    }

input[type=radio] {
    position: relative;
    cursor: pointer;
    margin: 5px 10px;
}

    input[type=radio] + label {
        display: inline;
    }

    input[type=radio]:before {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 0;
        left: 0;
        border: 2px solid #555555;
        border-radius: 3px;
        background-color: white;
    }

    input[type=radio]:checked:after {
        content: "";
        display: block;
        width: 5px;
        height: 10px;
        border: solid black;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg) !important;
        -ms-transform: rotate(45deg) !important;
        transform: rotate(45deg) !important;
        position: absolute;
        top: 2px;
        left: 6px;
    }

#ContentPlaceHolder1_pnlEfectosAgresiones > div:nth-child(3) > div:nth-child(9) > div:nth-child(12) > div.col-12.col-lg-4.col-xl-4 > label
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: none !important;
    border-color: var(--bs-btn-hover-border-color);
}

select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/*Custom CHK*/
.custom-ch-label {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 5px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 1em !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #BA181F;
}

    .custom-ch-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .custom-ch-label input:checked ~ .custom-checkmark {
            background-color: #BA181F;
        }

.custom-checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background: #fff;
    border: solid 2px #BA181F;
    border-radius: 5px;
}

.custom-ch-label input:checked ~ .custom-checkmark:after {
    display: block;
}

.custom-ch-label .custom-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-ch-red {
    color: #151515;
    font-style: italic;
}

    .custom-ch-red input:checked ~ .custom-checkmark {
        background-color: #9A030F;
        border: solid 2px #9A030F;
    }

    .custom-ch-red .custom-checkmark {
        background: #151515;
        border: solid 2px #151515;
    }

.custom-ch-white {
    color: #fff;
    font-style: italic;
}

    .custom-ch-white input:checked ~ .custom-checkmark {
        background-color: #151515;
        border: solid 2px #151515;
    }

    .custom-ch-white .custom-checkmark {
        background: #fff;
        border: solid 2px #fff;
    }


/*Responsive styles*/
/*Escritorio*/
@media (min-width: 1399.98px) {
    .navbar-nav {
        width: 100%;
    }
}
/*Tablet Portrait*/
@media (min-width: 576px) and (max-width: 991.98px) and (orientation:portrait) {
}
/*Tablet landscape*/
@media (min-width: 991.98px) and (max-width: 1199.98px)and (orientation:landscape) {
}
/*Movil Portrait*/
@media (max-width: 575.98px)and (orientation:portrait) {
}
/*Movil landscape*/
@media (min-width: 576px) and (max-width: 991.98px) and (orientation:landscape) {
}


