:root {
    --pricingTable-yellow: #C7EB6B;
    --pricingTable-purple: #C7EB6B;
    --pricingTable-blue: #0192af;
}

.tariffs {
    margin-top: 30px;
}
.tariffs-lists{
    padding: 0px 70px;
}

.pricingTable {
    padding-bottom: 10px;
    background: #fff;
    border-bottom: 15px solid var(--pricingTable-yellow);
    border-left: 1px solid var(--pricingTable-yellow);
    border-right: 1px solid var(--pricingTable-yellow);
    border-top: 1px solid var(--pricingTable-yellow);
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    height: 450px;
    margin-bottom: 20px;
}

.pricingTable-free .amount{
    animation: colorChange 1s infinite alternate;
}
@keyframes colorChange {
    0%   { color: #e90000; }
    100% { color: #C7EB6B; }
}

.pricingTable:before {
    content: "";
    width: 100%;
    height: 300px;
    background: #C7EB6B29;
    position: absolute;
    top: -150px;
    left: 0;
    transform: skewY(-20deg);
    border-bottom: 1px solid #C7EB6B;
}

.pricingTable .pricingTable-header {
    padding: 20px 20px 60px;
    text-align: left;
    height: 88px;
    position: relative;
}

.pricingTable .title {
    font-size: 18px;
    font-weight: 600;
    /*color: #fff;*/
    margin: 0;
    width: 78%;
}
.justify-content-end{
    display:flex;
    justify-content: end;
}
.pricingTable .year {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--pricingTable-yellow);
    text-align: center;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;
}
.pricingTable .price-value:before {
    z-index: -1;
}

.pricingTable .year:after {
    top: auto;
    bottom: -28px;
}
.pricingTable .btn-countries {
    background: white;
    border: 2px solid #C7EB6B;
    padding: 0px 14px;
    border-radius: 5px;
}
.pricingTable .btn-countries:hover {
    background: #C7EB6B;
    color: white;
}
.pricingTable .price-value {
    display: inline-block;
    width: 167px;
    height: 109px;
    padding: 15px;
    border-top: none;
    border-bottom: none;
    position: relative;
}

.pricingTable .price-value:before,
.pricingTable .price-value:after {
    content: "";
    width: 83px;
    height: 100px;
    border: 3px solid var(--pricingTable-yellow);
    border-right: none;
    border-bottom: none;
    position: absolute;
    top: -60px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}

.pricingTable .price-value:after {
    /*border-top: none;*/
    /*border-left: none;*/
    /*border-bottom: 3px solid var(--pricingTable-yellow);*/
    /*border-right: 3px solid var(--pricingTable-yellow);*/
    /*top: auto;*/
    /*bottom: -60px;*/
}

.pricingTable .value {
    width: 89%;
    height: 89%;
    background: #fff;
    border: 2px solid var(--pricingTable-yellow);
    border-top: none;
    border-bottom: none;
    color: var(--pricingTable-yellow);
    z-index: 1;
    position: relative;
    display: grid;
}

.pricingTable .value:before,
.pricingTable .value:after {
    content: "";
    width: 86px;
    height: 86px;
    background: #fff;
    border: 3px solid var(--pricingTable-yellow);
    border-bottom: none;
    border-right: none;
    position: absolute;
    top: -43px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}

.pricingTable .value:after {
    border-right: 3px solid var(--pricingTable-yellow);
    border-bottom: 3px solid var(--pricingTable-yellow);
    border-top: none;
    border-left: none;
    top: auto;
    bottom: -43px;
    box-shadow: 18px 19px 17px 1px #C7EB6B6b;
}

.pricingTable .currency {
    display: inline-block;
    font-size: 30px;
    margin-top: 7px;
    vertical-align: top;
}


.pricingTable .amount {
    display: inline-block;
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
}
.pricingTable .amount-discount {
    margin-top: -18px;
    text-decoration: line-through;
    color: red;
}


.pricingTable .amount span {
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    vertical-align: top;
    margin-top: -7px;
}
.pricingTable .amount .mile-price{
    font-size: 16px;
    position: relative;
    top: -34px;
}

.pricingTable .month {
    display: block;
    font-size: 16px;
    line-height: 0;
}

.pricingTable .pricing-content {
    padding: 20px 19px 0 19px;
    margin-bottom: 10px;
    list-style: none;
    text-align: left;
    transition: all 0.3s ease 0s;
}

.pricingTable .pricing-content li {
    padding: 3px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.pricingTable .pricing-content li i {
    margin-right: 10px;
}

.pricingTable .pricingTable-signup {
    display: inline-block;
    width: 50%;
    height: 50px;
    line-height: 45px;
    font-size: 19px;
    font-weight: 700;
    color: var(--pricingTable-yellow);
    border: 2px solid var(--pricingTable-yellow);
    margin: 0 auto 10px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease 0s;
    cursor:pointer;
}

.pricingTable .pricingTable-signup:hover {
    background: var(--pricingTable-yellow);
    color: #2A2A2B;
    background: linear-gradient(270deg, rgba(212,252,121,1) 0%, rgba(150,230,161,1) 100%);
}

.fa-exchange-alt {
    transform: rotate(90deg);
}

.pricingTable.purple {
    border-bottom-color: var(--pricingTable-purple);
}

.pricingTable.purple:before {
    background: var(--pricingTable-purple);
}

.pricingTable.purple .year {
    color: var(--pricingTable-purple);
}

.pricingTable.purple .price-value {
    border-left-color: var(--pricingTable-purple);
    border-right-color: var(--pricingTable-purple);
}

.pricingTable.purple .price-value:before {
    border-left-color: var(--pricingTable-purple);
    border-top-color: var(--pricingTable-purple);
}

.pricingTable.purple .price-value:after {
    border-right-color: var(--pricingTable-purple);
    border-bottom-color: var(--pricingTable-purple);
}

.pricingTable.purple .value {
    border-left-color: var(--pricingTable-purple);
    border-right-color: var(--pricingTable-purple);
    color: var(--pricingTable-purple);
}

.pricingTable.purple .value:before {
    border-left-color: var(--pricingTable-purple);
    border-top-color: var(--pricingTable-purple);
}

.pricingTable.purple .value:after {
    border-right-color: var(--pricingTable-purple);
    border-bottom-color: var(--pricingTable-purple);
}

.pricingTable.purple .pricingTable-signup {
    color: var(--pricingTable-purple);
    border-color: var(--pricingTable-purple);
}

.pricingTable.purple .pricingTable-signup:hover {
    color: #fff;
    background: var(--pricingTable-purple);
}

.pricingTable.blue {
    border-bottom-color: var(--pricingTable-blue);
}

.pricingTable.blue:before {
    background: var(--pricingTable-blue);
}

.pricingTable.blue .year {
    color: var(--pricingTable-blue);
}

.pricingTable.blue .price-value {
    border-left-color: var(--pricingTable-blue);
    border-right-color: var(--pricingTable-blue);
}

.pricingTable.blue .price-value:before {
    border-left-color: var(--pricingTable-blue);
    border-top-color: var(--pricingTable-blue);
}

.pricingTable.blue .price-value:after {
    border-right-color: var(--pricingTable-blue);
    border-bottom-color: var(--pricingTable-blue);
}

.pricingTable.blue .value {
    border-left-color: var(--pricingTable-blue);
    border-right-color: var(--pricingTable-blue);
    color: var(--pricingTable-blue);
}

.pricingTable.blue .value:before {
    border-left-color: var(--pricingTable-blue);
    border-top-color: var(--pricingTable-blue);
}

.pricingTable.blue .value:after {
    border-right-color: var(--pricingTable-blue);
    border-bottom-color: var(--pricingTable-blue);
}

.pricingTable.blue .pricingTable-signup {
    color: var(--pricingTable-blue);
    border-color: var(--pricingTable-blue);
}

.pricingTable.blue .pricingTable-signup:hover {
    color: #fff;
    background: var(--pricingTable-blue);
}
@media only screen and (max-width: 1024px) and (min-width: 990px) {
    .pricingTable .pricing-content {
        padding: 20px 10px 0 10px;
    }
    .tariffs-lists{
        padding: 0px;
    }


}
@media only screen and (max-width: 990px) {
    .pricingTable {
        margin-bottom: 30px;
    }
    .tariffs-lists{
        padding: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .pricingTable:before {
        transform: skewY(-15deg);
    }
    .pricingTable .title {
        font-size: 18px;
    }
    .tariffs-lists{
        padding: 0px;
    }
    .pricingTable .pricingTable-header {
        height: 80px;
    }
    .pricing-content .col-sm-6{
        width:50%;
    }
    .tariffs {
        margin-top: 0px;
    }
}

.tariffs .group {
    /*display: flex;*/
    line-height: 28px;
    /*align-items: center;*/
    position: relative;
    /*left: 23%;*/
    width: 700px;
    margin-bottom: 50px;
    padding: 4px;
    background: #F6F6F6;
    z-index: 8;
}
.form-tariff{
    position: absolute !important;
}
.tariffs .input {
    width: 99%;
    height: 50px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 1px solid rgb(189, 189, 189);
    border-radius: 12px;
    outline: none;
    background-color: #f3f3f4;
    color: #0d0c22;
    transition: .3s ease;
    /*box-shadow: 0px 5px 7px 0px #73819f;*/
}

.tariffs .input::placeholder {
    color: #9e9ea7;
    font-weight: 400;
}

.tariffs .input:focus,
input:hover {
    outline: none;
    border-color: #C7EB6B !important;
    /*background-color: #fff;*/
    /*box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);*/
}

.tariffs .icon {
    position: absolute;
    left: 1rem;
    top: 19px;
    fill: #9e9ea7;
    width: 1.2rem;
    height: 1.2rem;
}

@media only screen and (max-width: 767px) {
    .tariffs .group {
        padding-left: 2.5%;
        /*padding-right: 14px;*/
    }
    .form-tariff{
        width: 100% !important;
    }
}

.warpper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

.tab {
    cursor: pointer;
    padding: 15px 70px;
    margin: 0px 2px;
    background: linear-gradient(270deg, rgba(212, 252, 121, 1) 0%, rgba(150, 230, 161, 1) 100%);;
    display: inline-block;
    color: #2A2A2B;
    border-radius: 12px 12px 0px 0px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
}

@media only screen and (max-width: 767px) {
    .tab {
        padding: 10px 20px;
    }
}
.country-title{
    margin-bottom: 20px;
}
.panels {
    background: #F6F6F6;
    min-height: 200px;
    width: 100%;
    padding-top: 40px !important;
    border-radius: 3px;
    overflow: hidden;
    /*padding: 20px;*/
}

.panel {
    display: none;
    animation: fadein 0.8s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.div-country {
    background-color: white;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 13px;
    cursor: pointer;
    font-size: 15px;
    border: 0.8px solid #2a2a2b3b
}
#acceptBtn{
    background: linear-gradient(270deg, rgba(212, 252, 121, 1) 0%, rgba(150, 230, 161, 1) 100%);
    border: 1px solid #C7EB6B;
}
.div-country:hover {
    box-shadow: 0px 0px 3px 0px #C7EB6B;
    border-color: #C7EB6B;
}
.countries-list, .regions-list{
    gap: 20px
}
.radio {
    display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel {
    display: block;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab {
    background: #F6F6F6;
    color: #000;
    border-top: 3px solid #C7EB6B;
}

.flag-icon {
    width: 32px;
    height: 32px;
    margin-right: 7px;
    border-radius: 50%;
    object-fit: cover;
}
.countries-list .flag-icon {
    width: 27px;
    height: 27px;
}
/*.countries-list .colmd3{*/
/*    width: 23% !important;*/
/*}*/
/*.regions-list .colmd4{*/
/*    width: 31% !important;*/
/*}*/
.country-li{
    margin: 20px 0px;
    cursor:pointer;
}
.countries-ul-list{
    overflow-y: auto;
    height: 500px;
}
.tariff-modal .pricing-content li {
    padding: 7px 0px 20px 0px;
}
.esim-image{
    /*box-shadow: -8px 5px 15px 0px #C7EB6B94;*/
    border-radius: 12px;
}
.flag-modal-img{
    position: absolute;
    top: 66px;
    left: 40%;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.colmd6{
    margin-bottom:10px;
}
@media (min-width: 768px){
    .countries-list .colmd3{
        width: 23% !important;
    }
    .regions-list .colmd4{
        width: 31% !important;
    }

}
@media only screen and (max-width: 767px) {
    .esim-image{
        margin-bottom: 18px;
    }
    .flag-modal-img{
        top: 80px;
        left: 76%;
        width: 40px;
        height: 40px;
    }
    .countries-list, .regions-list{
        gap: 10px
    }

}
@media only screen and (max-width: 768px) {
    #TariffModal .modal-dialog{
        max-width: 700px;
    }
    .flag-modal-img{
        top: 77px;
        left: 39%;
    }
}
@media only screen and (max-width: 412px) {
    .flag-modal-img{
        top: 65px;
        left: 77%;
    }
}
.img-div {
  background: #0084cc;
  list-style: none;
  color: white;
  font-family: Tahoma;
  font-size: 36px;
  line-height: 100px;
  margin: 10px;
  padding: 3%;
  position: relative;
  text-align: center;
  display: inline-block !important;
  width: 100px !important;
}
.slider2 {
 width: 270px;
 left: 50%;
 transform: translateX(-50%);
}
.tariff-about-label{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: -6px;
    display: block;
    color: grey;
}
.operator-tariff{
    font-size: 15px;
    margin-bottom: -2px !important;
    line-height: 20px;
}
.network-type{
    font-size: 8px;
    border: 1px solid;
    padding: 3px;
    border-radius: 5px;
    height: 17px;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
    left: 5px;
    top: -3px;
}
.display-flex-center{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.align-items-center{
    display: flex;
    align-content: center;
}
.operations-modal-list{
    font-size: 15px;
}
.about-tariff .col-md-1{
    margin-right:5px;
}
.li-operation{
    margin: 20px 0px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
}
.all-network{
    font-size: 15px;
    cursor: pointer;
}
.phones-list-get{
    font-size: 15px;
    cursor: pointer;
}
.tariffs-countries-modal{
    font-size: 15px;
}
.phone-model-list{
    list-style-type: disc;
    padding: 4px 30px;
}
#PhonesModal .modal-body{
    font-size: 15px;
    height:450px;
}
@media only screen and (max-width: 768px) {
    .about-tariff .col-md-1{
        width: 10%;
    }
    .about-tariff .col-md-10{
        width: 83%;
    }
    .li-operation .col-md-7{
        width: 50%;
    }
    .li-operation .col-md-5{
        width: 50%;
    }
    .operations-modal-list{
        font-size: 12px;
    }
    .one-country .col-md-6{
        width:50%;
    }
    #TariffModal .modal-footer .col-md-6{
        width:50%;
    }
}

.modal-desc{
    font-size: 15px;
    font-weight: 500;
}
.margin-bottom-20{
  margin-bottom:20px
}
.tariff-price{
    font-size: 26px;
    padding-top: 10px;
}
.about-tariff-child{
    border-bottom: 1px solid #dcd9d9;
    padding-bottom: 12px;
}
#search-data{
    width:100%;
    /*padding:13px;*/
}
#search-data li{
    background-color:#F6F6F6;
    padding:7px;
    margin:2px 0;
    cursor:pointer;
    flex-wrap: nowrap;
}

#search-data li a{

    display:flex;

    align-items:center;


    cursor:pointer;

}
.worlds .style-2{
    height:360px;
}
#search-data  li ul li:hover{
    background-color: rgb(0 0 0 / 11%);
    border-radius: 8px;
}

#search-data li span{
    margin-left:20px;

}
#search-data li img{
    width: 40px;
    border-radius: 50%;
    height: 40px;
    object-fit: cover;
    margin-top:-6px;
}
#search-data ul{
    margin:13px;
    /*height:350px;*/
}
.li-title{
    width: 110px;
    border: 1px solid #d7cdcd;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 5px 0px #C7EB6B;
    color: #C7EB6B;
}
.region-title{
    background: linear-gradient(90deg, #2a2a2b, #C7EB6B);
    color: white;
}
.global-title{
    background: linear-gradient(270deg, rgba(212,252,121,1) 0%, rgba(150,230,161,1) 100%);
    color: white;
}
.border-img{
    border: 1px solid #a3aca3;
}

.loader{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #2A2A2B;
    margin: 0 auto;
    position: relative;
    animation: rotating 2.5s infinite ease;
}
.loader:before,
.loader:after{
    content: "";
    position: absolute;
    border-radius: 100px 100px;
    border: 5px solid transparent;
}
.loader:before{
    top: 5px;
    left: 5px;
    width: 180px;
    height: 180px;
    border-top-color: rgba(150,230,161,1);
    animation: rotating 2s infinite ease;
}
.loader:after{
    top: 15px;
    left: 15px;
    width: 160px;
    height: 160px;
    border-top-color: rgba(212,252,121,1);
    animation: rotating 1.5s infinite ease;
}
@keyframes rotating {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#TariffModal .loader{
    position: relative;
    top: -200px;
    margin-bottom: -161px;
}
.Tariff-Modal-Class{
    align-items: flex-start;
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.5);
}


.click-count-box {
    padding: 10px;
}

.click-count-box span {
    font-size: 15px;
    padding: 2px 10px;
    border: 2px solid rgb(189, 189, 189);
    border-radius: 10px;
    color: rgb(100 100 100);
    margin: 0 5px 3px 5px;
    cursor:pointer;
}

.click-count-box span:hover {
    color: rgb(58 58 58);
    background: rgb(199 235 107);
}
.get-countries-list{
    margin-top: 35px;
}
.mile-text{
    font-size: 13.5px;
    width: 110px;
    line-height: 17px;
    position: relative;
    top: 7px;
    display: none;
}
.earn-mile-label{
    margin: 10px 0 -2px 5px;
}
@media only screen and (max-width: 767px) {
    .tariff-price{
        font-size: 20px;
    }
}
