/*=========================================
 NEXT CAR RENTAL PREMIUM MODALS
==========================================*/

.modal-open-next{
overflow:hidden;
}

.next-modal{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

display:flex;

justify-content:center;
align-items:center;

background:rgba(0,0,0,.55);

backdrop-filter:blur(10px);

z-index:999999;

opacity:0;

visibility:hidden;

transition:.35s;

padding:25px;

}

.next-modal.show{

opacity:1;

visibility:visible;

}

.next-modal-content{

background:#fff;

width:100%;

max-width:980px;

border-radius:25px;

overflow:hidden;

box-shadow:0 35px 90px rgba(0,0,0,.35);

transform:translateY(40px) scale(.95);

transition:.35s;

}

.next-modal.show .next-modal-content{

transform:translateY(0) scale(1);

}

.next-modal-header{

background:linear-gradient(135deg,#38A96D,#2D8C5A);

padding:28px 35px;

display:flex;

align-items:center;

justify-content:space-between;

color:#fff;

}

.next-modal-title{

display:flex;

align-items:center;

gap:18px;

}

.next-modal-title i{

font-size:42px;

background:#fff;

color:#38A96D;

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.next-modal-title h2{

margin:0;

font-size:30px;

font-weight:800;

}

.next-modal-title span{

display:block;

margin-top:5px;

font-size:14px;

opacity:.85;

}

.next-close{

cursor:pointer;

width:48px;

height:48px;

border-radius:50%;

border:none;

background:rgba(255,255,255,.15);

color:#fff;

font-size:24px;

transition:.30s;

}

.next-close:hover{

background:#fff;

color:#38A96D;

transform:rotate(90deg);

}

.next-modal-body{

padding:35px;

max-height:68vh;

overflow:auto;

line-height:30px;

font-size:17px;

color:#555;

}

.next-modal-body p{

margin-bottom:18px;

}

.next-modal-body h3{

font-size:24px;

font-weight:700;

color:#38A96D;

margin-top:25px;

margin-bottom:18px;

display:flex;

align-items:center;

gap:10px;

}

.next-modal-body ul{

padding-left:20px;

margin-bottom:25px;

}

.next-modal-body li{

margin-bottom:14px;

}

.next-modal-body li i{

color:#38A96D;

margin-right:10px;

}

.legal-box{

background:#f7f9fb;

border-left:6px solid #38A96D;

padding:22px;

border-radius:15px;

margin:25px 0;

}

.contact-card{

background:#fff;

border:1px solid #e8e8e8;

border-radius:18px;

padding:25px;

margin-top:30px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.contact-card div{

margin-bottom:15px;

font-size:17px;

}

.contact-card i{

width:28px;

color:#38A96D;

}

.next-modal-footer{

padding:22px;

background:#f8f8f8;

text-align:right;

border-top:1px solid #eee;

}

.next-btn{

background:#38A96D;

color:#fff;

border:none;

padding:13px 35px;

border-radius:40px;

font-size:17px;

font-weight:700;

cursor:pointer;

transition:.30s;

}

.next-btn:hover{

transform:translateY(-2px);

box-shadow:0 10px 25px rgba(56,169,109,.35);

}

.next-modal-body::-webkit-scrollbar{

width:10px;

}

.next-modal-body::-webkit-scrollbar-thumb{

background:#38A96D;

border-radius:30px;

}

.next-modal-body::-webkit-scrollbar-track{

background:#ececec;

}

@media(max-width:900px){

.next-modal-content{

max-width:98%;

}

.next-modal-header{

padding:22px;

}

.next-modal-title h2{

font-size:24px;

}

.next-modal-title i{

width:60px;

height:60px;

font-size:32px;

}

.next-modal-body{

padding:25px;

font-size:15px;

line-height:27px;

}

.contact-card{

padding:18px;

}

}

@media(max-width:600px){

.next-modal{

padding:10px;

}

.next-modal-header{

flex-direction:column;

text-align:center;

gap:20px;

}

.next-close{

position:absolute;

top:20px;

right:20px;

}

.next-modal-body{

max-height:72vh;

}

.next-btn{

width:100%;

}

}