
#popup {
    display: flex;
    position: fixed;
    margin: 0 auto;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
    z-index: 9999999;
}

.bg-popup{
	background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-content{
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 20px;
    width: auto;
    height: auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}
.popup-cerrar{
    position: absolute;
    right: -20px;
    top: -20px;
    padding: 20px;
    background: #00a0dc;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    line-height: 10px;
    cursor: pointer;
    text-decoration: none;
}
.popup-cerrar:hover{
	background: #0c265f;
	color: #fff;
}
.popup-resp{
	width: 100%;
	height: auto;;
	margin: 0 auto;
}
.popup-form form h1{
    color: #0c265f;
    font-size: 3em;
    font-weight: bold;
    border-bottom: 1px solid #0c265f;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.popup-form form label{
	display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
    color: #706f6f;
}
.popup-form-control{
    display: block;
    width: 90%;
    padding: 6px 5%;
    margin-bottom: 1em;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.popup-form-select{
    display: block;
    width: 100%;
    padding: 6px 5%;
    margin-bottom: 2em;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.popup-form textarea{
    height: 100px;
}
.btn-popup {
	background-color: #ff2303;
    background-image: none;
    float: right;
    text-shadow: none;
    color: #FFF;
    border-radius: 10px;
    padding: 1em 3em;
    font-weight: 600;
    border: 0px;
    cursor: pointer;
}
.btn-popup:hover {
	background-color: #ff4c32;
	color: #fff;
}
.envio-iso h1{
    color: #192f44;
    margin: 1em 0;
    text-align: center;
}
.envio-iso p{
    text-align: center;
    font-size: 15px;
    margin-bottom: 15px;
}
.envio-iso a{
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 1em 4em;
    font-weight: bold;
    background: #192f44;
    border-radius: 10px;
    color: #fff;
    margin: 0 auto;
}
.envio-iso a:hover{
    text-decoration: none;
    background: #00a0dc;
    color: #fff;
}


/**********SLIDER**********/
.sliderpopup{
    width: 500px;
    margin: auto;
    overflow: hidden;
}

.sliderpopup ul{
    display: flex;
    padding: 0;
    width: 400%;

    animation: cambio 20s infinite;
    animation-direction: alternate;
}

.sliderpopup li{
    width: 100%;
    list-style: none;
}

.sliderpopup img{
    width: 100%;
}

@keyframes cambio{
    0% {margin-left: 0;}
    20% {margin-left: 0;}

    25% {margin-left: -100%;}
    45% {margin-left: -100%;}

    50% {margin-left: -200%;}
    70% {margin-left: -200%;}

    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}

