﻿@font-face {
    font-family: 'Jornada Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../assets/css/fonts/JornadaSans-Book.ttf') format('truetype');
}

.internal-popup {
    font-family: 'Jornada Sans', Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 99999;
}

.internal-popup .overlay {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #000;
    transition: all .5s ease,transform .5s ease;
    opacity: 0.5;
}

.internal-popup-scroller {
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: auto;
    z-index: 2;
}


.internal-popup-body {
    max-width: 780px;
    width: 95%;
    background-color: #F5F5F5;
    margin: 50px auto;
    /*
        transform: translate(-50%, 0);
    top: 245px;*/
    z-index: 3;
}

.big .internal-popup-body.centered,
.large .internal-popup-body.centered,
.normal .internal-popup-body.centered {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
}

.internal-popup-body .btnclose {
}


.internal-popup-body .titulo {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    padding-top: 53px;
    padding-bottom: 44px;
    width: 80%;
    margin: 0 auto;
}


.internal-popup-body .conteudo {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 20px;
    text-align: justify;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.internal-popup-body .conteudo a {
    font-weight: bold;
    text-decoration: underline;
    color: #000;
}

.internal-popup-body .button-holder {
    padding-bottom: 45px;
    width: 80%;
    margin: 30px auto 0;
}

.internal-popup-body .button {
    text-align: center;
    margin: 10px 6px;
    margin-left: 0;
    display: inline-block;
    border: 0;
    text-transform: capitalize;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    padding: 13px 25px;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    font-family: JornadaSansMedium;
    color: #191919;
    background-color: #ffdb62;
}

.internal-popup-body .button.alternative {
    border: 2px #e4002b solid;
    background-color: #fff;
    color: #e4002b;
}

.internal-popup-body .button:hover {
    background-color: #f6c927;
}

.internal-popup-body .button.alternative:hover {
    background-color: #fefefe;
}

.internal-popup .aviso {
    color: #910048;
    margin-left: 30px;
    display: none;
    position: absolute;
}

.internal-popup .main {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}


/* Hide the default checkbox */
.internal-popup input[type=checkbox] {
    visibility: hidden;
}

/* Creating a custom checkbox
        based on demand */
.internal-popup .custom-check {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #222;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Specify the background color to be
        shown when hovering over checkbox */
.internal-popup .main:hover input ~ .custom-check {
   border-color:#444;
}

/* Specify the background color to be
        shown when checkbox is active */
.internal-popup .main input:active ~ .custom-check {
    border-color: #e4002b;
}

/* Specify the background color to be
        shown when checkbox is checked */
.internal-popup .main input:checked ~ .custom-check {
    background-color: #910048;
    border-color: #910048;
}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.internal-popup .custom-check:after {
    content: "";
    position: absolute;
    display: none;
}

/* Display checkmark when checked */
.internal-popup .main input:checked ~ .custom-check:after {
    display: block;
}

/* Styling the checkmark using webkit */
/* Rotated the rectangle by 45 degree and 
        showing only two border to make it look
        like a tickmark */
.internal-popup .main .custom-check:after {
    background-image: url(/credito-nao-residentes/assets/css/red.png);
    -webkit-background-size: 175px 22px;
    background-size: 175px 22px;
    background-position: -24px -3px;
    width: 16px;
    height: 16px;
    top: 0;
    background-color: #fff;
    border-radius: 5px;
}


.mini .internal-popup-body .titulo {
    font-size: 18px;
}

.mini .internal-popup-body .conteudo {
    font-size: 14px;
}


/*.mini .internal-popup-body .button {
    padding:0 20px;
}*/
