body {
    font-family: "Roboto";
    background-color: #1E1E24;
}

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.wrapper {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.reverse {
    transform: rotateY(-180deg);
}


/*** Header ***/
header {
    background: #303038;
    padding: 25px 0;
}

header .header-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.header-menu ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    transition: .3s all ease;
    font-weight: bold;
    position: relative;
}

.header-menu ul li a:after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #03FFA4;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    transition: .3s all ease;
}

.header-menu ul li a:hover {
    color: #03FFA4;
}

.header-menu ul li a:hover:after {
    width: 100%;
}

header .header-contact {
    display: flex;
    justify-content: flex-end;
}

.header-contact .telegram {
    margin-right: 10px;
}

.header-contact a {
    display: block;
    padding: 10px;
    background: #27272D;
    border-radius: 5px;
    border: 2px solid #27272D;
    transition: .3s all ease;
}

.header-contact a:hover {
    border-color: #03FFA4;
}

.footer-logo img {
    width: 400px;
}

/*** END header ***/


/*** Main first screen ***/

.main-screen {
    text-align: center;
    display: flex;
    align-items: center;
    background-image: url('../images/connectmap-main.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: calc(100vh - 100px);
}

.main-screen .main-screen-texts .text-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-screen .main-screen-texts .text-description h1 {
    font-size: 15px;
    line-height: 24px;
    color: #949494;
    margin-bottom: 45px;
}

.main-screen .main-screen-texts .main-screen-action a {
    display: inline-block;
    font-size: 13px;
    line-height: 15px;
    font-weight: 600;
    color: #27272D;
    padding: 17px 60px;
    background: #03FFA4;
    border-radius: 5px;
    transition: .3s all ease;
}

.main-screen .main-screen-texts .main-screen-action a:hover {
    box-shadow: 0px 0px 15px rgba(3, 255, 164, 0.5);
}

/*** END Main first screen ***/


/*** Free proxies ***/

.free-proxy {
    background: #27272D;
    color: #6F6F81;
    padding: 20px 0;
}

.free-proxy .proxy-text {
    position: relative;
}

.free-proxy .proxy-text p {
    margin: 0;
}

.free-proxy .proxy-text:before {
    content: '';
    display: block;
    height: 21px;
    width: 21px;
    background: rgba(3, 255, 164, 0.25);
    position: absolute;
    left: -30px;
    top: 0;
    border-radius: 50%;
    bottom: 0;
    margin: auto;
    animation: pulse 2s ease-in-out infinite;
}

.free-proxy .proxy-text:after {
    content: '';
    display: block;
    height: 15px;
    width: 15px;
    background: #03FFA4;
    position: absolute;
    left: -27px;
    top: 0;
    border-radius: 50%;
    bottom: 0;
    margin: auto;
}

.free-proxy .proxy-list ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 19px;
}

.free-proxy .proxy-list ul li {
    margin-left: 20px;
}

.free-proxy .proxy-list ul li span {
    color: #03FFA4;
}

/*** END Free proxies ***/


/*** Advantages  **/

.advantages {
    padding: 40px 0;
    color: #fff;
}

.advantages .advantages-block > div:nth-child(-n + 3) .advantage-item {
    margin-bottom: 60px;
}

.advantages .advantage-item {
    position: relative;
    z-index: 99999;
}

.advantages .advantage-item .advantage-image {
    margin-bottom: 10px;
    position: relative;
}

.advantages .advantage-item .advantage-image img {
    height: 125px;
    position: relative;
    z-index: 100;
}

.advantages .advantage-item .advantage-image .advantage-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.advantages .advantage-item .advantage-title h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
}

.advantages .advantage-item .advantage-description h3 {
    font-size: 16px;
    line-height: 24px;
    padding: 0 40px;
}

/*** END Advantages  **/


/*** Search by country ***/
.search-form {
    background: #303038;
    padding: 10px 0;
    margin-bottom: 30px;
}

.search-form input {
    display: block;
    background-color: #27272D;
    border-radius: 23px;
    border: none;
    padding: 13px 0 13px 56px;
    width: 100%;
    outline: none;
    border: 2px solid #27272D;
    background-image: url('../images/search.svg');
    background-repeat: no-repeat;
    background-position: 15px center;
    color: #fff;
}

.search-form input:focus {
    border-color: #03FFA4;
}

.countries-block {
    max-height: 411px;
    overflow: hidden;
    margin-bottom: 16px;
}

.append-city {
    max-height: 308px;
    overflow: hidden;
}

.countries-block .col-md-3 {
    padding: 0 5px;
}

.append-city .col-md-3 {
    padding: 0 5px;
}

.countries-block .country-item {
    display: flex;
    justify-content: space-between;
    background: #303038;
    border-radius: 5px;
    align-items: center;
    padding: 8px 8px 8px 15px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: .3s all ease;
}

.append-city .country-item {
    display: flex;
    justify-content: space-between;
    background: #303038;
    border-radius: 5px;
    align-items: center;
    padding: 8px 8px 8px 15px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: .3s all ease;
}


.countries-block .country-item:hover {
    border-color: #03FFA4;
}

.append-city .country-item:hover {
    border-color: #03FFA4;
}

.countries-block .country-item .country-name h4 {
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin-top: 9px;
}

.append-city .country-item .country-name {
    font-size: 16px;
    line-height: 19px;
    color: #fff;
}

.countries-block .country-item .proxy-count {
    font-size: 18px;
    line-height: 21px;
    color: #03FFA4;
    padding: 13px;
    background: #27272D;
    border-radius: 5px;
}

.append-city .country-item .proxy-count {
    font-size: 18px;
    line-height: 21px;
    color: #03FFA4;
    padding: 13px;
    background: #27272D;
    border-radius: 5px;
}

.country-search .load-more {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.country-search .load-more a {
    display: inline-block;
    padding: 12px 59px;
    color: #03FFA4;
    border: 1px solid #03FFA4;
    border-radius: 6px;
    transition: .3s all ease;
}

.country-search .load-more a.closed {
    opacity: 0;
    display: none;
    visibility: hidden;
}

.country-search .load-more a:hover {
    color: #000;
    background: #03FFA4;
    box-shadow: 0px 0px 15px rgba(3, 255, 164, 0.5);
}

/*** END Search by country ***/


/*** Prices block ***/

.prices {
    padding: 50px 0;
}

.prices .price-item {
    background: #303038;
    border-radius: 0 0 15px 15px;
    position: relative;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
}

.prices .price-item:hover {
    transform: translate(0, -15px);
}

.price-item:before {
    content: '';
    display: block;
    height: 11px;
    position: absolute;
    width: 100%;
    top: -11px;
    left: 0;
    border-radius: 15px 15px 0 0;
}

.item-blue:before {
    background: #03A4FF;
}

.item-green:before {
    background: #03FF77;
}

.item-orange:before {
    background: #FFB803;
}

.prices .price-item .item-icon {
    margin-bottom: 15px;
}

.prices .price-item .item-description {
    color: #949494;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 20px;
}

.prices .price-item .item-description .price-time {
    margin-bottom: 10px;
}

.prices .price-item .item-description img {
    margin-right: 10px;
}

.prices .price-item .item-action a {
    display: inline-block;
    padding: 13px 65px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 15px;
    transition: .3s all ease;
}

.prices .price-item.item-blue .item-action a {
    color: #03A4FF;
    border: 1px solid #03A4FF;
}

.prices .price-item.item-blue .item-action a:hover {
    background: #03A4FF;
    color: #000;
}

.prices .price-item.item-green .item-action a {
    color: #03FFA4;
    border: 1px solid #03FFA4;
}

.prices .price-item.item-green .item-action a:hover {
    background: #03FFA4;
    color: #000;
}

.prices .price-item.item-orange .item-action a {
    color: #FFB803;
    border: 1px solid #FFB803;
}

.prices .price-item.item-orange .item-action a:hover {
    background: #FFB803;
    color: #000;
}

/*** End prices block ***/


/*** Payment systems ***/
.payment {
    padding: 30px 0;
    background: #27272D;
    margin-bottom: 40px;
    margin-top: 40px;
}

.payment .payment-item {
    position: relative;
}

.payment .payment-item:before {
    content: '';
    display: block;
    width: 50%;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
}

.payment .payment-item:hover:before {
    opacity: 1;
}

.payment .payment-item a {
    position: relative;
    z-index: 100;
}

/*** End Payment systems ***/


/*** Footer ***/
footer {
    background: #27272D;
    padding-top: 35px;
}

.footer-contacts .footer-logo {
    margin-bottom: 60px;
}

.footer-contacts .footer-social .email {
    margin-bottom: 10px;
}

.footer-contacts .footer-social .telegram {
    margin-bottom: 10px;
}

.footer-contacts .footer-social a {
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    transition: .3s all ease;
}

.footer-contacts .footer-social a:hover {
    color: #03FFA4;
}

.footer-contacts .footer-social a img {
    margin-right: 10px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-menu ul li {
    margin-bottom: 5px;
}

.footer-menu ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    transition: .3s all ease;
}

.footer-menu ul li a:hover {
    color: #03FFA4;
}


.footer-company-about {
    font-size: 15px;
    line-height: 24px;
    color: #949494;
    text-align: right;
}

footer .copyright {
    padding: 15px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #868687;
}

/*** End Footer ***/


/** To top scroller **/
.to-top {
    position: fixed;
    right: 45px;
    bottom: -45px;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease;
    z-index: 400;
}

.to-top.active {
    bottom: 45px;
    opacity: 1;
    visibility: visible;
}

.to-top a {
    display: flex;
    height: 35px;
    width: 35px;
    border: 2px solid #03FFA4;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

/** To top scroller **/


/*** Modal windows ***/

.modal-content {
    background: #303038;
    overflow-y: auto;
}

.modal-content .modal-header {
    position: relative;
    border: none;
}

.modal-content .modal-header .modal-title {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin: 10px 0;
}

.modal-content .modal-header .close {
    position: absolute;
    right: 28px;
    top: 28px;
    cursor: pointer;
    background: #27272D;
    border-radius: 5px;
    padding: 0;
    opacity: 1;
    outline: none;
}

.modal-content .modal-header .modal-extend {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    margin: -1rem -1rem -1rem auto;
    position: absolute;
    right: 58px;
    top: 28px;
    cursor: pointer;
    background: #27272D;
    border-radius: 5px;
    padding: 1px 5px 1px 1px;
    opacity: 1;
    border: none;
    outline: none;
}

.modal-content .modal-header .modal-extend img {
    padding: 1px 0px 3px 1px;
}

.modal-content .modal-body {
    padding: 0 30px 30px 30px;
}

.modal-content .modal-body input {
    padding: 14px 0 14px 55px;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
    background: #27272D;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 14px center;
    border: 2px solid #27272D;
    height: auto;
}

.modal-content .modal-body input[name=api-key] {
    background-image: url('../images/key.svg');
}

.modal-content .modal-body input[name=email] {
    background-image: url('../images/mail.svg');
}

.modal-content .modal-body input[name=proxy-server-count] {
    background-image: url(../images/icon-amount.svg);
}

.modal-content .modal-body input[name=extended-key] {
    background-image: url('../images/key.svg');
}

.modal-content .modal-body input[name=payment-type] {
    background-image: url('../images/dollar-sign.svg');
}

.modal-content .modal-body input[name=link-service-check] {
    background-image: url('../images/link.svg');
}

.modal-content .modal-body .payment-type-block {
    position: relative;
}

.modal-content .modal-body input:focus {
    outline: none;
    border: 2px solid #03FFA4;
    box-shadow: none;
}

.modal-content .modal-body .btn {
    display: block;
    text-align: center;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
}

.btn-green {
    background: #03FFA4;
}

.btn-green:hover {
    box-shadow: 0px 0px 15px #03FFA4;
}

.btn-grey {
    background: #4A4A57;
}

/*.btn-grey:hover {
  box-shadow: 0px 0px 15px #03FFA4;
  background: #03FFA4;
}*/

.nice-select, .nice-select.open .list {
    width: 100%;
    background: #27272D;
    color: #6F6F81;
    height: auto;

}

.nice-select {
    background-image: url('../images/dollar-sign.svg');
    background-repeat: no-repeat;
    background-position: 14px center;
    border: 2px solid #27272D;
    padding: 4px 0 4px 55px;
    margin-bottom: 1rem;
}

.proxy-type-block .nice-select {
    background-image: url('../images/icon-server.svg');
}

.protocol-type-block .nice-select {
    background-image: url('../images/icon-protocol.svg');
}

.modal-content .modal-body input[name=payment-types] {
    background-image: url('../images/dollar-sign.svg');
}

.nice-select:hover, .nice-select:focus {
    border: 2px solid #27272D;
}

.nice-select:after {
    height: 16px;
    width: 16px;
    background-image: url('../images/arrow-right.svg');
    border: none;
    transform: rotate(0);
    top: 0;
    bottom: 0;
    margin: auto;
}

.nice-select.open {
    border: 2px solid #03FFA4;
}

.nice-select.open:after {
    transform: rotate(90deg);
    transform-origin: center;
}

/*.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus{
color: #03FFA4;
background: #6F6F81;
}*/
/*** Slider customize ***/

.days-slider-count {
    text-align: right;
    font-size: 14px;
    line-height: 16px;
    color: #6F6F81;
    margin-bottom: 10px;
    margin-top: 15px;
}

.noUi-target {
    background: #27272D;
    border-radius: 4.5px;
    border: none;
    box-shadow: none;
    height: 9px;
}

.noUi-horizontal .noUi-handle {
    background: #03FFA4;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    position: relative;
    outline: none;
    right: -34px;
    top: -4px;
}

.noUi-horizontal .noUi-handle:after {
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    background: #03FFA4;
    opacity: .5;
    position: absolute;
    left: -3px;
    top: -3px;
    border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
    content: none;
}

.noUi-connect {
    background: #6F6F81;
}

/*** End slider customize ***/


/*** Agreement checkmark ***/

/* Customize the label (the container) */
.agreement-label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    display: block;
    text-align: center;
    color: #6F6F81;
    font-size: 16px;
    line-height: 19px;
}

.agreement-label a {
    color: #03FFA4;
}

/* Hide the browser's default checkbox */
.agreement-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.agreement-label .checkmark {
    position: absolute;
    top: 0;
    left: 45px;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border: 2px solid #03FFA4;
    border-radius: 5px;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.agreement-label:hover input ~ .checkmark {
    /*background-color: #03FFA4;*/
}

/* When the checkbox is checked, add a blue background */
.agreement-label input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.agreement-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.agreement-label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.agreement-label .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #03FFA4;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*** End Agreemnet checkmark ***/


/*** Price Info ***/

.price-info {
    font-size: 16px;
    color: #6F6F81;
    line-height: 19px;
}

.price-info .by-day {
    margin-bottom: 30px;
}

.price-info .total-price {
    font-weight: 500;
    font-size: 25px;
    line-height: 29px;
}

#price {
    color: #03FFA4;
}

/*** End Price Info ***/

/*** End modal windows ***/


/******FAQ & API*****/
.faq {
    padding: 45px 0;
}

.title-block {
    margin-top: 120px;
}

.title-block p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    color: #FFFFFF;
}

.title-block h1 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    color: #FFFFFF;
}

.top-breadcrumbs {
    padding-top: 45px;
}

.breadcrumb {
    justify-content: center;
    background-color: unset;
    margin-bottom: 45px;
}

.breadcrumb .breadcrumb-item {
    padding: 0;
}

.breadcrumb .breadcrumb-item a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
}

.breadcrumb .breadcrumb-item.active {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #03FFA4;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #8F8F81;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    margin: 0 7px;
    background: #6F6F81;
    border-radius: 26px;
    position: relative;
    top: -6px;
}

.faq .accordion-container {
    background-color: #303038;
    padding: 25px 0;
    border-radius: 7px;
}


.faq .accordion-block .accordion .card-header {
    background-color: transparent;
    padding: 0.5rem 0;
    border: none;
}

.faq .accordion .card-header .btn-link {
    cursor: pointer;
}

.faq .accordion-block .accordion .card-body {
    background-color: transparent;
    padding: 0rem 55px;
    border: none;
}

.faq .accordion-block .accordion .card-body .card-body-answer {
    border-left: 2px solid #03FFA4;
    padding: 15px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;

    color: #949494;
}

.faq .accordion-block .accordion .card {
    border-radius: 0;
    padding: 10px 0;
    border: none;
    border-top: 1px solid #4A4A57;
    border-bottom: 1px solid #4A4A57;
    background-color: transparent;
}

.faq .accordion-block .accordion .card:first-child {
    border-top: none !important;
}

.faq .accordion-block .accordion .card:last-child {
    border-bottom: none !important;
}

.faq .accordion-container .accordion .accordion-icon {
    background-image: url('../images/accordion-plus.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: all .2s linear;
}


.faq .accordion-container .accordion .btn-link {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #fff;
    transition: all .2s linear;
    display: flex;
    width: 100%;
    align-items: center;
    padding-left: 0;
    text-decoration: none;
}

.faq .accordion-container .accordion .btn-link[aria-expanded=true] {
    color: #03FFA4;
}

.faq .accordion-container .accordion .btn-link .accordion-icon {
    margin-right: 25px;
    transition: all .2s linear;
}

.faq .accordion-container .accordion .btn-link .accordion-icon.activated {
    background-image: url('../images/accordion-minus.svg');

}

.api {
    margin-bottom: 100px;
}

.api .title-block p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    color: #FFFFFF;
}

.api .table {
    color: #6F6F81;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
}


.api .table tr,
.api .table th,
.api .table td {
    border-color: #6F6F81;
}

.api .table thead tr th:nth-child(1),
.api .table thead tr th:nth-child(2),
.api .table tbody tr th,
.api .table tbody td:nth-child(2) {
    border-right: 1px solid #6F6F81 !important;
}

.api .table thead tr,
.api .table tbody tr th {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 25px;
    color: #03FFA4;
}

.api .table thead th {
    border-top: none !important;
}

/***END FAQ&API*******/


/********Blog********/

.blog {
    padding: 45px 0;
}

.blog .title-block p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    color: #FFFFFF;
}

.blog .blog-container .row {
    justify-content: space-between;
}

.blog .blog-container .row .col-md-4 {
    flex: 0 0 30%;
    margin-bottom: 45px;
}

.blog-container .item {
    border-radius: 7px;
    width: 100%;
    background-color: #303038;
    transition: .3s all ease;
    display: block;
}

.blog-container .item:hover {
    transform: translate(0, -20px);
}

.blog .blog-container .item .img {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 45px 10px 45px 25px;
    border-radius: 7px;
}

.blog .blog-container .item .img .img-title {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
    color: #fff; /* Оставляем белый цвет */
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7); /* Добавлена тень */
}

.blog .blog-container .item .img .img-inform {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 5px;
    color: #9E9CFF;
}

.blog .blog-container .item .text {
    padding: 15px 50px 15px 25px;
}

.blog .blog-container .item .text .text-title {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom: 5px;
    display: block;
}

.blog .blog-container .item .text .text-inform {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 17px;
    color: #949494;
    margin-bottom: 5px;

}


.blog .blog-container .item .icons {
    padding: 15px 25px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #4A4A57;
}

.blog .blog-container .item .icons .like {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 6px;
}

.blog .blog-container .item .icons .like .amount {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #949494;
    margin-bottom: 0;

    transition: all .2s linear;
}

.liked-post {
    transition: all .2s linear !important;
    color: #23FF7B !important;
}

.blog .blog-container .item .icons .like img {
    margin-left: 6px;
}

.blog-index-controls {
    text-align: center;
    cursor: pointer;
    margin-top: 45px;
    margin-bottom: 45px;
}


/*******End Blog*******/


/*** Blog View ***/
.blog-view-title {
    margin-bottom: 30px;
}

.blog-view-title .container {
    padding: 60px 0;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-view-title .container .title {
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: #fff;
    margin-bottom: 20px;
}

.blog-view-title .container .second-title {
    font-size: 16px;
    line-height: 19px;
    color: #a8a8a8;
}


.blog-view-body {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 19px;
    color: #949494;
}

.blog-view-body .blog-body > p {
    margin-bottom: 0;
    line-height: 26px;
}

.blog-view-body .blog-body .blog-faq {
    margin-top: 35px;
}

.blog-view-body .container {
    background: #303038;
    border-radius: 7px;
    padding: 45px 50px;
}

.blog-view-body .proxy-container-server {
    padding: 10px;
    margin-bottom: 0px;
}

.blog-faq .card {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.card-body img {
    width: 50%;
    height: auto; /* Сохраняет пропорции изображения */
}

.blog-faq .card .card-header {
    background: #27272D;
    border-radius: 5px;
    border: none;
    padding: 0;
}

.blog-faq .card .card-header button {
    padding: 20px 60px;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    text-decoration: none;
    transition: .3s all ease;
    position: relative;
}

.blog-faq .card .card-header button:after {
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    background-image: url('../images/corner-right-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 55px;
    top: 19px;
    visibility: visible;
    opacity: 1;
    transition: .3s all ease;
    transform: rotate(360deg);
}

.blog-faq .card .card-header button.collapsed:after {
    opacity: 0;
    visibility: hidden;
}

.blog-faq .card .card-header button:hover {
    color: #23FF7B;
}

.blog-faq .card .card-body {
    margin: 30px 0;
    padding: 0 0 0 60px;
    position: relative;
    line-height: 24px;
}

.blog-faq .card .card-body:before {
    content: '';
    display: block;
    height: 100%;
    width: 2px;
    background: #03FFA4;
    position: absolute;
    left: 30px;
    top: 0;
}

/*** End Blog View ***/


/*** Error page ***/

.error-page {
    padding-bottom: 50px;
}

.error-page-body .error-image {
    margin: 50px 0;
}

.go-back {
    text-align: center;
    margin-bottom: 40px;
}

.error-page-text {
    background: #303038;
    padding: 11px 125px;
    color: #949494;
    border: 1px solid #0000;
    border-radius: .25rem;
    display: inline-block;
    margin-bottom: 40px;
    line-height: 47px;
}

.go-back a {
    padding: 14px 125px;
    margin-top: 227px;
}

/*** Error page end ***/


/*** Thanks page ***/
.thanks-page {
    padding-bottom: 50px;
}

.thanks-text {
    background-image: url('https://i.imgur.com/DzbfwCi.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 50px 50px 105px 60px;
    color: #03FFA4;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.thanks-error {
    color: #fff;
    padding: 55px 296px;
}

/*** End Thanks page ***/


/*** Animations ***/
@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(3, 255, 164, 0.5);;
    }
    40% {
        box-shadow: 0 0 0 5px rgba(3, 255, 164, 0);;
    }
    80% {
        box-shadow: 0 0 0 5px rgba(3, 255, 164, 0);
    }
    100% {
        box-shadow: 0 0 0 rgba(3, 255, 164, 0);
    }


}

/*** End Animations ***/

.for-mobile {
    display: none;
}

@media only screen and (max-width: 480px) {
    body {
        position: relative;
    }

    body:after {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        background: rgba(48, 48, 56, 0.8);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
    }

    body.menu-opened:after {
        opacity: 1;
        visibility: visible;
    }

    .preview-proxy {
        padding-top: 105px !important;
    }

    .for-mobile {
        display: block;
    }

    .for-desktop {
        display: none;
    }

    header {
        padding: 20px 0;
        width: 100%;
        z-index: 1000;
    }

    .footer-company-about {
        text-align: center;
    }


    .breadcrumb {
        margin-bottom: 0;
    }

    .go-back a {
        width: 100%;
        padding: 15px 20px;
    }

    /**********index**********/
    /********mobile menu*********/
    .hamburger-menu {
        width: 270px;
        position: fixed;
        right: -100%;
        top: 65px;
        z-index: 1000;
        transition: all .5s linear;
        background-color: #303038;
    }

    .called {
        right: 0;
        transition: all .5s linear;
    }

    .hamburger-menu .account {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px 20px 30px;
    }

    .hamburger-menu .account .account-info {
        text-align: right;
    }

    .hamburger-menu .account .account-info p {
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
        color: #FFFFFF;
        margin-bottom: 5px;
    }

    .hamburger-menu .account .account-info a {
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 16px;
        color: #6F6F81;
    }

    .hamburger-menu .account .account-avatar {
        width: 55px;
        height: 55px;
        margin-left: 15px;
    }

    .hamburger-menu .account .account-avatar img {
        width: 100%;
    }

    .hamburger-menu .menu {
        background-color: #303038;
        margin-top: 30px;
    }

    .hamburger-menu .menu ul {
        padding-inline-start: 0px !important;
        margin-bottom: 0;
    }

    .hamburger-menu .menu ul li {
        list-style: none;
        padding: 15px 20px;
        border-left: 2px solid #03FFA4;
        margin-bottom: 5px;
        background-color: #27272D;
    }

    .hamburger-menu .menu ul li a {
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
        transition: all .2s linear;
    }

    .hamburger-menu .menu ul li a img {
        margin-right: 10px;
    }


    .hamburger-menu .menu ul li a:hover {
        color: #03FFA4;
        transition: all .2s linear;
    }


    /********end mobile menu*********/
    .main-screen {
        height: 100vh;
    }

    .main-screen .main-screen-texts .text-title {
        font-size: 28px;
    }

    .free-proxy .proxy-text p {
        display: none;
    }

    .free-proxy .proxy-list ul {
        justify-content: center;
        padding-inline-start: 10px !important;
        font-size: 14px;
    }

    .free-proxy .proxy-text:before {
        left: 0px;
        top: 17px;
    }

    .free-proxy .proxy-text:after {
        left: 3px;
        top: 16px;
    }

    .free-proxy .proxy-list ul li {
        margin-left: 10px;
    }

    .proxy-type-item {
        width: 380px;
    }

    .advantages .advantages-block > div:nth-child(-n + 3) .advantage-item {
        margin-bottom: 0;
    }

    .advantages .advantages-block .advantage-item {
        margin-bottom: 40px !important;
    }

    .countries-block {
        padding: 0 50px;
    }

    .append-city {
        padding: 0 50px;
    }

    .country-search .load-more {
        padding: 0 40px;
    }

    .country-search .load-more a {
        width: 100%;
    }

    .prices .justify-around > div {
        padding: 0 65px;
    }

    .prices .justify-around > div:nth-child(1) {
        margin-bottom: 35px;
    }

    .prices .justify-around > div:nth-child(2) {
        margin-bottom: 35px;
    }

    .prices .price-item:hover {
        transform: translate(0, -10px);
    }

    .payment-block {
        padding: 0 30px;
        min-height: 260px;
    }

    .payment .payment-item {
        margin-bottom: 30px;
    }

    .payment .payment-item:last-child {
        margin-bottom: 0px !important;
    }


    .modal-content .modal-header .close {
        right: 25px;
        top: 25px;
        border-radius: 0;
        padding: 0;
    }

    .agreement-label .checkmark {
        left: 0;
    }

    .agreement-label {

        padding-left: 10px;

    }

    .agreement-label p {

        font-size: 14px;

    }

    /******end index***********/
    /********Faq*********/
    .faq {
        padding-top: 105px;
    }

    .faq .title-block p {
        margin-bottom: 0;
    }

    .faq .accordion-container {
        margin-top: 30px;
        padding: 15px 30px;
    }

    .faq .accordion-container .accordion-block {
    }

    .faq .accordion-block .accordion .card-body {
        padding: 15px 10px 15px 60px;
    }

    .faq .accordion-block .accordion .card-body .card-body-answer {
        padding: 5px 0 5px 10px;
    }

    .faq .accordion-container .accordion .btn-link {
        text-align: left;
    }

    .faq .accordion-container .accordion .btn-link .accordion-icon {
        margin-right: 20px;
    }


    .api {
        margin-bottom: 10px;
    }

    .api .title-block p {
        margin-bottom: 0;
    }

    .api .api-table {
        margin-top: 15px;
        padding: 15px;
    }
    ul {
        text-decoration: none;
    }
    li{
        text-decoration: none;
    }
    .glide {
        /*padding: 40px 0;*/
        overflow: hidden;
    }


    /********end Faq*********/
    /********Blog*********/
    .blog {
        padding: 105px 0 0 0;
    }

    .blog .blog-container .row .col-md-4 {
        flex: unset;
    }

    .blog .title-block p {
        margin-bottom: 0;
    }

    .blog .blog-container {
        margin-top: 30px;
    }

    /********end Blog*********/
    /**********blog-view**********/
    .blog-view .title-block p {
        margin-bottom: 0;
    }

    .blog-view .blog-view-title {
        margin-top: 30px;
    }

    .blog-view-body .container {
        padding: 15px 0px;
    }

    .blog-view-body .blog-body > p {
        margin-bottom: 0;
        padding: 0 15px;
    }

    .blog-faq .card .card-header button {
        padding: 20px 25px;
    }

    .blog-faq .card .card-header button:after {
        right: 15px;
    }

    .blog-faq .card .card-body {
        padding: 0 0 0 25px;
    }

    .blog-faq .card .card-body:before {
        left: 15px;
    }

    /**********end blog-view**********/
    /**********404**********/
    .error-page {
        padding: 0 15px 50px;
    }

    .error-page .error-image img {
        width: 100%;
    }

    .error-page .btn-grey {
        background-color: #27272D;
        color: #949494;
    }

    .footer-contacts .footer-logo {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-contacts .footer-social {
        text-align: center;
        margin: 20px 0;
    }

    /******end 404***********/
    /*******thankyou*********/
    .thanks-page {
        padding: 105px 15px 50px;
    }

    .thanks-page .thanks-text {
        margin-bottom: 30px;
        padding: 40px 50px 80px 60px;
        line-height: 18px;
        font-size: 14px;
    }

    .thanks-page .btn-grey {
        background-color: #27272D;
        color: #949494;
    }


    /*******end thankyou*********/
    #modal-authorisation .modal-content .modal-body .btn {
        margin-bottom: 10px;
    }

    .to-top {
        right: 30px;
    }
}

@media only screen and (max-width: 380px) {
    .free-proxy .proxy-list ul li {
        margin-left: 15px;
    }

    .proxy-container-desciption {
        margin-left: -100px;
        margin-right: -74px;
    }

    .main-screen .main-screen-texts .text-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 320px) {
    .free-proxy .proxy-list ul li {
        margin-left: 15px;
    }

    .main-screen .main-screen-texts .text-title {
        font-size: 26px;
    }

    .thanks-page .thanks-text {
        padding: 40px 46px 70px 45px;
        line-height: 16px;
        font-size: 12px;
    }

    .content-table-footer-pagination {
        padding: 15px 35px;
    }

    .content-table-footer-pagination a {
        font-size: 18px;
        line-height: 22px;
    }

    #arrow-right {
        left: calc(100% - 25px);
    }

    .content-table-footer-pagination {
        padding: 15px 35px;
    }

    .content-table-footer-pagination a {
        font-size: 18px;
        line-height: 22px;
    }

    #arrow-right {
        left: calc(100% - 25px);
    }

    #private-list .pagination-block {
        margin-top: -150px;
    }

}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .glide {
        overflow: hidden;
        padding: 40px;
    }
}

.dash-sidebar {
    cursor: pointer;
}

.pay-js {
    cursor: pointer;
}

@media only screen and (max-width: 1000px) and (min-width: 770px) {

    .prices .col-md-3 {

        flex: 0 0 33%;

        max-width: 33%;

    }

}

.ya-share2__item_service_vkontakte .ya-share2__icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='feather feather-share-2'%3E%3Ccircle cx='18' cy='5' r='3'%3E%3C/circle%3E%3Ccircle cx='6' cy='12' r='3'%3E%3C/circle%3E%3Ccircle cx='18' cy='19' r='3'%3E%3C/circle%3E%3Cline x1='8.59' y1='13.51' x2='15.42' y2='17.49'%3E%3C/line%3E%3Cline x1='15.41' y1='6.51' x2='8.59' y2='10.49'%3E%3C/line%3E%3C/svg%3E") !important;
}

/*.ya-share2__container_size_m .ya-share2__icon {
  width: 1px !important;
  height: 1px !important;

}*/

.ya-share2__item_service_vkontakte .ya-share2__badge {
    background: none !important;
}

.proxy-container {
    background-color: #303038;
    border-radius: 7px;
    margin-bottom: 15px;
    min-height: 100px;
    padding: 15px;
}

.table-message {
    text-align: center;
    font-size: 24px;
}

.list-group {
    margin-bottom: 5px;
}

.item-proxy-watch-button {
    color: #03FFA4;
    border: 1px solid #03FFA4;
    display: inline-block;
    padding: 13px 65px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 15px;
    transition: .3s all ease;
    float: right;
}

.item-proxy-watch-button:hover {
    background-image: initial;
    background-color: rgb(0, 163, 117);
    color: rgb(189, 187, 184);
}

.list-group-item {
    background-color: #303038;
    color: #fff;
    list-style: none;
    vertical-align: middle;
    border-top: 1px solid #4a4a57 !important;
    border: none;
}

.content-table {
    padding: 2rem;
    background-color: #303038;
    width: 100%;
}

.content-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-table-main {
    overflow-x: auto;
}

.content-table-main table {
    width: 100%;
}

.content-table-main th {
    color: #6F6F81;
}

.content-table-main td {
    color: #fff;
}

.content-table-main table td, table th {
    vertical-align: middle;
    border-top: 1px solid #4A4A57;
}

.content-table-main th, .content-table-main td {
    padding: 15px;
    text-align: left;
}

.content-table-main tbody > tr > th {
    color: #65F3C0;
}

.content-table-footer {
    display: flex;
    justify-content: space-between;
}

.content-table-footer-pagination {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 25px;
    max-width: 400px;
    background: #27272D;
    margin-bottom: 30px;
    border: 1px solid;
    border-radius: 7px;
}

.content-table-footer-pagination a {
    font-size: 24px;
    line-height: 28px;
    color: #6F6F81;
}

.content-table-footer-pagination a:first-child {
    padding-left: 0;
}

.pagination-block {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

#arrow-left {
    position: absolute;
    top: 22px;
    left: 20px;
    cursor: pointer;
}

#arrow-right {
    position: absolute;
    top: 22px;
    left: 370px;
    cursor: pointer;
}

#arrow-left-private {
    position: absolute;
    top: 22px;
    left: 20px;
    cursor: pointer;
}

#arrow-right-private {
    position: absolute;
    top: 22px;
    left: 370px;
    cursor: pointer;
}


.content-table-footer-list {
    display: flex;
    align-items: center;
    width: 100%;
}

.content-table-footer-list .primary-outline {
    margin-right: 1.25rem;
    padding: 1rem 3.5rem;
    text-decoration: none;
}

.content-table-footer-list .download-url {
    padding: 2rem 3.9rem 2rem 1rem;
    border: 1px solid #6F6F81;
    border-radius: 10rem;
    background-color: #303038;
    font-size: 1rem;
    color: #6F6F81;
    text-decoration: none;
    width: 95%;
    margin-left: 2%;
}

.content-table-footer-list .relative {
    position: relative;
}

.content-table-footer-list .relative a {
    position: absolute;
    left: 89%;
    top: 20px;
}

.content-table-mobile {
    display: none;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: none !important;
}

.column-name th {
    border-top: none !important;
}

.content-table-main tbody > tr > th {
    vertical-align: middle;
    border-top: 1px solid #4A4A57;
}


.accent {
    color: #03FFA4;
    display: inherit;
}

.page-item .last {
    display: none;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #03FFA4;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E1E24;
    transition: all 0.5s;
    opacity: 1;
    flex-direction: column;
}

.preloader-remove {
    opacity: 0;
    z-index: -10;
}


@media only screen and (max-width: 480px) {
    .item-proxy-watch-button {
        float: none;
        margin-top: 15px;
        display: flex;
        justify-content: space-around;
    }

    .content-table-footer-pagination {
        padding: 15px 35px;
    }

    .content-table-footer-pagination a {
        font-size: 18px;
        line-height: 22px;
    }

    #arrow-right {
        left: calc(100% - 25px);
    }

}

.body-image img {
    height: 200px;
    width: 200px;
    margin-bottom: 48px;
}

.days-select a {
    display: inline-block;
    padding: 1px 14px;
    color: #03FFA4;
    margin-top: 10px;
    margin-left: 9px;
    border: 1px solid #03FFA4;
    border-radius: 10px;
    transition: .3s all ease;
}

.days-select {
    margin-top: 4px;
    margin-bottom: 39px;
}

.modal {
    z-index: 99999;
}

.modal-body .days-select a:hover {
    color: #000;
    background: #03FFA4;
    box-shadow: 0px 0px 15px rgb(3 255 164 / 50%);
}

.switchLang {
    float: right;
}

.switchLang a {
    color: #03FFA4;
    border: 1px solid #03FFA4;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 15px;
    transition: .3s all ease;
}

.switchLang a:hover {
    background: #03FFA4;
    color: #000;
}

.proxy-container-header {
    padding: 25px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 37px;
    text-align: center;
    color: #FFFFFF;
}

#data-input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

/*#export-btn {
  padding: 13px 45px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 15px;
  transition: 0.3s all ease;
  color: #03ffa4;
  background-color: transparent;
  border: 1px solid #03ffa4;
}*/

/*#export-btn:hover {
  background: #03ffa4;
  color: #000;
}*/

.export-form {
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
    padding-top: 10px;
}

.proxy-select {
    padding: 14px 0 14px 55px;
    font-size: 16px;
    line-height: 19px;
    color: #6f6f81;
    background: #27272d;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 14px center;
    border: 2px solid #27272d;
    height: auto;
}

.select-label .checkmark {
    top: -6px;
    left: 0;
}

.select-all-label .checkmark {
    top: -15px;
}

body {
    position: relative;
}

.export-popup {
    opacity: 0;
    visibility: hidden;
    width: 400px;
    background-color: #303038;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5000;
    border: 1px solid #fff;
    transition: 0.5s;
}

.export-popup.active {
    opacity: 1;
    visibility: visible;
}

.export-popup__title {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.export-popup__title span {
    color: #fff !important;
    font-size: 28px;
    cursor: pointer;
}

.export-popup__btn {
    margin-top: 30px;
}

.export-popup__input {
    width: 100%;
    padding: 10px;
}

#export-template {
    background-image: url(https://proxyleet.com/images/external-link.svg);
}

.loader-button img {
    margin-top: -27px;
    position: absolute;
    margin-left: -32px;
}

.review-export-proxy {
    color: #6F6F81;
    margin-top: 20px;
    margin-left: 5px;
    font-size: 11px;
}

.proxy-container-desciption {
    padding: 2px 70px 38px 92px;
    text-align: center;
    color: #FFFFFF;
}

#change-rotation-period-input {
    background-image: url("https://proxyleet.com/images/clock.svg");
}

#modal-change-protocol .nice-select {
    background-image: url("https://proxyleet.com/images/icon-location-server.svg") !important;
}

.rotate_can_change img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.greenbat {
    padding: 13px 45px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 15px;
    transition: 0.3s all ease;
    color: #03ffa4;
    background-color: transparent;
    border: 1px solid #03ffa4;
    float: right;
    margin-top: 25px;
    margin-right: 5px;
}

.greenbat:hover {
    background: #03ffa4;
    color: #000;
}

.modal-head {
    text-align: center;
    margin-bottom: 23px;
    font-weight: bold;
    font-size: 19px;
}

#modal-proxy-extension {
    width: 100%;
}

#modal-proxy-extension .modal-dialog {
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
}

#modal-proxy-extension .modal-dialog .modal-content {
    width: 100%;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-header {
    padding-bottom: 60px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-header .modal-title {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form {
    padding: 0 10px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .row {
    padding: 0;
    margin: 0;
    width: 100%;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .row .col-md-7, #modal-proxy-extension .modal-dialog .modal-content .modal-body form .row .col-md-3, #modal-proxy-extension .modal-dialog .modal-content .modal-body form .row .col-md-2 {
    padding: 0;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-wrapper {
    overflow: visible !important;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-wrapper .scroll-content.scroll-scrolly_visible {
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    top: 0;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .products {
    max-height: 300px;
    height: 200px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .products .row {
    margin-bottom: 13px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .products .row:last-child {
    margin-bottom: 0;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x {
    display: none !important;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y {
    position: absolute;
    width: 10px;
    background: #303038;
    right: -15px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y .scroll-element_outer {
    background-color: transparent;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y .scroll-element_outer .scroll-element_track {
    width: 10px;
    background: #303038;
    border-radius: 5px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y .scroll-element_outer .scroll-bar {
    width: 6px;
    height: 15px;
    left: 2px;
    right: 2px;
    top: 3px;
    background: #6F6F81;
    border-radius: 3.5px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels {
    border-bottom: 1px solid #4A4A57;
    padding: 0 10px 6px;
    margin-bottom: 10px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels label {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
    mix-blend-mode: normal;
    display: block;
    width: 100%;
    margin-bottom: 0;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels .center {
    text-align: center;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .name {
    background: #27272D;
    border-radius: 5px;
    padding: 13px 35px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .name .btn_remove {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #27272D;
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    right: 10px;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .name .btn_remove:hover {
    background: #6F6F81;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .name .btn_remove:after {
    content: '';
    width: 10px;
    height: 10px;
    background: url("../images/remove.svg") no-repeat center center/cover;
    position: absolute;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .id_cont {
    padding: 0 20px !important;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .id {
    background: #27272D;
    border-radius: 5px;
    width: 100%;
    padding: 13px 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
    text-align: center;
    position: relative;
    height: 46px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .term_inp .nice-select {
    width: 100%;
    background-image: url(../images/calendar.svg);
    height: 46px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .total-price {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    color: #6F6F81;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .total-price b {
    color: #03FFA4;
}

#modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .btn-green {
    max-width: 174px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    #modal-proxy-extension .modal-dialog .modal-content .modal-header {
        padding-bottom: 30px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 16px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form {
        padding: 0;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .row {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-wrapper {
        overflow: visible !important;
        overflow-x: scroll;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .products {
        width: 800px;
        height: 180px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .products .row {
        margin-bottom: 10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y {
        position: absolute;
        width: 10px;
        background: #303038;
        right: -15px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x {
        display: block !important;
        width: 100%;
        height: 10px;
        background: #303038;
        left: 0;
        bottom: -10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer {
        background-color: transparent;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer .scroll-element_track {
        width: 10px;
        height: 100%;
        background: #303038;
        border-radius: 5px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer .scroll-bar {
        width: 10px;
        height: 6px;
        left: 2px;
        right: 2px;
        top: 0;
        background: #6F6F81;
        border-radius: 3.5px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels {
        padding: 0 10px 6px;
        margin-bottom: 10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels label {
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .name {
        padding: 8px 25px;
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .name .btn_remove {
        width: 20px;
        height: 20px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .id_cont {
        padding: 0 15px !important;
        max-width: 100px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .id {
        padding: 8px 10px;
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .term_inp {
        max-width: 220px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price {
        margin-top: 30px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .total-price {
        font-size: 22px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .btn-green {
        max-width: 170px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #modal-proxy-extension .modal-dialog .modal-content .modal-header {
        padding-bottom: 30px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 16px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form {
        padding: 0;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .row {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-wrapper {
        overflow: visible !important;
        overflow-x: scroll;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .products {
        width: 800px;
        height: 180px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .products .row {
        margin-bottom: 10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-y {
        position: absolute;
        width: 10px;
        background: #303038;
        right: -15px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x {
        display: block !important;
        width: 100%;
        height: 10px;
        background: #303038;
        left: 0;
        bottom: -10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer {
        background-color: transparent;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer .scroll-element_track {
        width: 10px;
        height: 100%;
        background: #303038;
        border-radius: 5px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .scroll-x .scroll-element_outer .scroll-bar {
        width: 10px;
        height: 6px;
        left: 2px;
        right: 2px;
        top: 0;
        background: #6F6F81;
        border-radius: 3.5px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels {
        padding: 0 10px 6px;
        margin-bottom: 10px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .top_labels label {
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .name {
        padding: 8px 25px;
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .name .btn_remove {
        width: 20px;
        height: 20px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .id_cont {
        padding: 0 15px !important;
        max-width: 100px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .id {
        padding: 8px 10px;
        font-size: 14px;
        line-height: 18px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .term_inp {
        max-width: 220px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price {
        margin-top: 30px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .total-price {
        font-size: 22px;
    }

    #modal-proxy-extension .modal-dialog .modal-content .modal-body form .total_price .btn-green {
        max-width: 170px;
    }
}

.nice-select-private {
    width: 400px;
    margin: 0 auto !important;
    float: none !important;
    margin-top: 24px !important;
}

@media (max-width: 575px) {
    .nice-select-private {
        width: 307px;
    }
}

.control-buttons {
    display: flex;
    justify-content: center;
}

.clipboard {
    cursor: pointer;
}

.top-breadcrumbs {
    padding-top: 45px;
}

.breadcrumb {
    justify-content: center;
    background-color: unset;
    margin-bottom: 45px;
}

.breadcrumb .breadcrumb-item {
    padding: 0;
}

.breadcrumb .breadcrumb-item a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
}

.breadcrumb .breadcrumb-item.active {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #03FFA4;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #8F8F81;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    margin: 0 7px;
    background: #6F6F81;
    border-radius: 26px;
    position: relative;
    top: -6px;
}


@media only screen and (max-width: 480px) {
    body {
        position: relative;
    }

    body:after {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        background: rgba(48, 48, 56, 0.8);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
    }

    body.menu-opened:after {
        opacity: 1;
        visibility: visible;
    }

    .preview-proxy {
        padding-top: 105px !important;
    }


}

@media only screen and (max-width: 380px) {


    .proxy-container-desciption {
        margin-left: -100px;
        margin-right: -74px;
    }


}

@media only screen and (max-width: 320px) {

    .content-table-footer-pagination {
        padding: 15px 35px;
    }

    .content-table-footer-pagination a {
        font-size: 18px;
        line-height: 22px;
    }

    #arrow-right {
        left: calc(100% - 25px);
    }

    .content-table-footer-pagination {
        padding: 15px 35px;
    }

    .content-table-footer-pagination a {
        font-size: 18px;
        line-height: 22px;
    }

    #arrow-right {
        left: calc(100% - 25px);
    }

    #private-list .pagination-block {
        margin-top: -150px;
    }

}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}


.proxy-container-server {
    background-color: #303038;
    border-radius: 7px;
    margin-bottom: 145px;
    padding: 15px;
    max-width: 757px;
}

.proxy-watch-item {
    cursor: pointer;
}

.proxy-container-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: auto !important;
    gap: 10px;
}

.proxy-container-server .item-proxy {
    flex: 0 0 auto;
    width: calc(50% - 5px);
}

.proxy-container-server .item-inner {
    background: #4A4A57;
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    border: 1px solid #3a3a48;
    /* margin-bottom: 10px; */
}

.proxy-container-server .item-inner.last-block {
    margin-bottom: 57px;
}

.proxy-container-server .item-inner .item-description,
.proxy-container-server .item-inner .item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.proxy-container .item-inner .item-content {
    height: 25px;
}

.proxy-container-server .item-inner .item-description {
    margin-bottom: 30px;
    height: 38px;
    align-items: flex-start;
}

.proxy-container-server .item-arrow img :hover {
    color: #03FFA4;
}

.proxy-container-server .item-inner .item-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    max-width: 305px;


}

.proxy-container-server .item-inner .item-info {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.proxy-container-server .item-inner .item-flag img {
    width: 25px;
    height: 25px;
    border-radius: 6px;
}
.glide-bought-items .glide__slides {
    display: flex;
    /* flex-wrap: wrap; <-- уберите, если не нужен перенос */
    align-items: center;
    min-height: auto !important;
    overflow-x: hidden;
}
.frequently_bought_items .header{
    font-weight: bold;
    font-size: 26px;
    line-height: 37px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 46px
}

.glide-bought-items .item-proxy {
    /* Позволяем элементу растягиваться,
    чтобы влезал текст */
    flex: 1 1 auto;
    /* или укажите min-width / max-width,
       если хотите ограничить */
    min-width: 280px;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 100%;
}

/* Вместо .proxy-container-server .item-inner */
.glide-bought-items .item-inner {
    background: #4A4A57;
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    border: 1px solid #3a3a48;
}

/* Если вам нужен отступ для «last-block» */
.glide-bought-items .item-inner.last-block {
    margin-bottom: 57px;
}

/* Вместо .proxy-container-server .item-inner .item-description и .item-content */
.glide-bought-items .item-inner .item-description,
.glide-bought-items .item-inner .item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Вместо .proxy-container .item-inner .item-content */
.glide-bought-items .item-inner .item-content {
    height: auto;
}

/* Вместо .proxy-container-server .item-inner .item-description */
.glide-bought-items .item-inner .item-description {
    margin-bottom: 30px;
    height: 38px;
    align-items: flex-start;
}

/* Исправляем :hover на img:hover */
.glide-bought-items .item-arrow img:hover {
    color: #03FFA4; /* Если это PNG/JPG, цвет не изменится.
                     Для SVG можно использовать fill. */
}

/* Вместо .proxy-container-server .item-inner .item-title */
.glide-bought-items .item-inner .item-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

/* Вместо .proxy-container-server .item-inner .item-info */
.glide-bought-items .item-inner .item-info {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

/* Вместо .proxy-container-server .item-inner .item-flag img */
.glide-bought-items .item-inner .item-flag img {
    width: 25px;
    height: 25px;
    border-radius: 6px;
}


.content-table-footer-pagination {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 25px;
    max-width: 400px;
    background: #27272D;
    margin-bottom: 30px;
    border: 1px solid;
    border-radius: 7px;
}

.content-table-footer-pagination a {
    font-size: 24px;
    line-height: 28px;
    color: #6F6F81;
}

.content-table-footer-pagination a.active {
    color: #03FFA4;
}

.content-table-footer-pagination span {
    font-size: 24px;
    line-height: 28px;
    color: #6F6F81;
}

.content-table-footer-pagination a:first-child {
    padding-left: 0;
}

.pagination-block {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 57px;
}

#arrow-left {
    position: absolute;
    top: 22px;
    left: 20px;
    cursor: pointer;
}

#arrow-right {
    position: absolute;
    top: 22px;
    left: 370px;
    cursor: pointer;
}


.proxy-container-desciption {
    margin-bottom: 28px;
    text-align: center;
    color: #949494;
}

.proxy-container-header {
    padding-top: 30px;
    font-family: Roboto;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #949494;
}

.item-description svg:hover {
    color: red;
    display: none;
}

.control-buttons .btn-grey {
    display: block;
    text-align: center;
    padding: 15px;
    /* width: 100%; */
    cursor: pointer;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;;
    /* width: 133px; */
    height: 54px;
    margin-top: 11px;
    margin-right: 9px;
}

.button-pay-text {
    color: #303038;
    font-weight: 600;
}

.proxy-types .container {
    margin-top: 107px;
    margin-bottom: 102px;
}

.main-content-hr {
    background: #303038;
    padding: 36px 0;
    margin-bottom: 30px;
}

.main-content-hr-header h4 {
    margin-top: 30px;
    font-size: 21px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    background: #303038;
    padding: 23px 0;
    margin-bottom: 30px;

}

.main-content-hr-header img {
    height: 40px;
}

.proxy-type-item {
    max-width: 302px;
    padding: 27px;
    background: #303038;
    border-radius: 0 0 15px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    max-width: 302px
}

.proxy-type-item-icon {
    margin-top: 14px;
    text-align: center;
}

.proxy-type-item-title h1 {
    margin-top: 27px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.proxy-type-item-description h3 {
    margin-top: 27px;
    color: #949494;
    font-size: 14px;
    text-align: center;
    vertical-align: top;
    margin-bottom: 33px;
    font-weight: 400;
    line-height: 22px;
}

.proxy-type-item-advantage-top {
    display: flex;
    color: #949494;
    padding: 13px 0;
    border: none;
    border-top: 1px solid #4A4A57;
    border-bottom: 1px solid #4A4A57;
}

.proxy-type-item-advantage-top h4 {
    font-size: 16px;
}

.proxy-type-item-advantage h4 {
    font-size: 16px;
}

.proxy-type-item-advantage-icon {
    margin-right: 15px;
}

.proxy-type-item-advantage-text {
    font-size: 200px;
}

.proxy-type-item-advantage {
    display: flex;
    margin-top: 13px;
    color: #949494;
    margin-right: 16px;
}

.proxy-type-item-advantage-center {
    margin-bottom: 52px;
}

.proxy-type-item:before {
    content: '';
    display: block;
    height: 11px;
    position: absolute;
    width: 100%;
    top: -11px;
    left: 0;
    border-radius: 15px 15px 0 0;
}

.loader-button-green {
    margin-top: -58px;
    position: fixed;
    margin-left: 65px;
}


/* Чекер */

/* Блок заголовка страницы */
.pageTitle {
    margin-top: 40px;
    margin-bottom: 66px;
}

.pageTitle .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pageTitle .pageTitle_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
}

.pageTitle .pageTitle_textBlock {
    display: flex;
    gap: 4px;
}

.pageTitle .pageTitle_textBlock_text {
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
}

.pageTitle .pageTitle_textBlock_link {
    font-size: 16px;
    line-height: 19px;
    color: #03FFA4;
}

/* Конец блока заголовка страницы */

/* Контрольная панель */
.controlPanel {
    margin-bottom: 20px;
}

.controlPanel .container {
    background: #303038;
    border-radius: 7.03448px;
    display: flex;
    flex-wrap: wrap;
    padding: 31px 29px 26px 37px;
    column-gap: 25px;
    row-gap: 19px;
    max-width: 901px;
}

.controlPanel .controlPanel_input {
    padding: 15px 20px;
    background: #1E1E24;
    border-radius: 7.03px;
    outline: none;
    border: none;
    resize: none;
    width: 430px;
    height: 170px;
    font-size: 16px;
    line-height: 19px;
    border: 2px solid transparent;
    color: #818181;

}

.controlPanel_input:focus {
    border: 2px solid #03FFA4;
}

.controlPanel .controlPanel_textBlock {
    padding-top: 5px;
    font-size: 14px;
    color: #FFFFFF;
    max-width: 395px;
}

.controlPanel .controlPanel_textBlock_text {
    max-width: 365px;
}

.controlPanel .controlPanel_btnGroup {
    display: flex;
    gap: 22px;
}

.controlPanel .controlPanel_btnGroup_btn {
    background: #27272D;
    border-radius: 5px;
    font-size: 16px;
    line-height: 19px;
    color: #949494;
    border: none;
    outline: none;
    width: 430px;
    height: 46px;
}

.controlPanel .controlPanel_btnGroup_btn:nth-child(2) {
    width: 384px;
}

/* Конец контрольной панели */

/* Панель результатов */
.resultPanel {
    max-width: 901px;
    margin: 0 auto 42px auto;
    background: #303038;
    border-radius: 7.03448px;
}

.resultPanel .container {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.resultPanel .resultPanel_header {
    padding: 41px 73px 26px 65px;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
    display: grid;
    grid-template-columns: 1fr 4fr .3fr .8fr 1fr 1fr 3.5fr;
    gap: 35px;
    justify-items: center;
}

.resultPanel .resultPanel_line {
    height: 1px;
    width: calc(100% - 30px);
    margin: 0 auto;
    background-color: #6F6F81;
}

.resultPanel .resultPanel_results {
    display: flex;
    flex-direction: column;
    padding: 0 auto;
    padding: 32px 46px 0 60px;
    gap: 25px;
    margin-bottom: 60px;

}

.resultPanel .resultPanel_results .resultPanel_results_result {
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr 3.5fr 1fr 1fr 1fr 1fr 3.5fr;
    gap: 35px;
    align-items: center;
    justify-items: center;
}

.resultPanel .resultPanel_results .resultPanel_results_result_country {
    display: flex;
    gap: 12px;
}

.resultPanel .resultPanel_results .resultPanel_results_result p {
    margin-bottom: 0;
    min-width: 40px;
    text-align: center;
}

.resultPanel .resultPanel_results-mobile {
    display: none;
}

/* Конец панели результатов */

/* Переход на главную */
.link {
    margin-bottom: 50px;
}

.link .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.link .link_btn {
    background: #27272D;
    border-radius: 5px;
    font-size: 16px;
    line-height: 19px;
    color: #949494;
    border: none;
    outline: none;
    width: 364px;
    height: 46px;
}

/* Конец перехода на главную */

/* Адаптив */
@media (max-width: 890px) {
    .controlPanel .container {
        justify-content: center;
    }

    .controlPanel .controlPanel_input {
        order: 1
    }

    .controlPanel .controlPanel_btnGroup {
        flex-direction: column;
        order: 2
    }

    .controlPanel .controlPanel_btnGroup_btn:nth-child(2) {
        width: 430px;
    }

    .controlPanel .controlPanel_textBlock {
        order: 3;
    }
}

@media (max-width: 770px) {
    .resultPanel {
        height: auto;
        background-color: transparent;
        margin-left: 0;
        margin-right: 0;
    }

    .resultPanel .container {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .resultPanel .resultPanel_header {
        display: none;
    }

    .resultPanel .resultPanel_line {
        display: none;
    }

    .resultPanel .resultPanel_results {
        display: none;
    }

    .resultPanel .resultPanel_results-mobile {
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result {
        background: #303038;
        border-radius: 3px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 14px;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result > svg {
        margin: 0 auto 14px auto !important;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result_content {
        display: flex;
        justify-content: space-between;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result_titles {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 16px;
        line-height: 19px;
        color: #6F6F81;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result_titles > * {
        text-align: left;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result_values {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 16px;
        line-height: 19px;
        color: #FFFFFF;
    }

    .resultPanel .resultPanel_results-mobile .resultPanel_results_result_values > * {
        text-align: right;
    }

    .resultPanel .resultPanel_results_result_country {
        display: flex;
        gap: 12px;
    }

    .resultPanel .resultPanel_results_result p {
        margin-bottom: 0;
        min-width: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        top: 0;
    }

    .pageTitle {
        margin-top: 100px;
    }

    .controlPanel {
        padding: 0px 28px;
    }

    .controlPanel .container {
        padding: 31px 28px;
    }

    .controlPanel .controlPanel_btnGroup {
        width: 100%;
    }

    .controlPanel .controlPanel_btnGroup .controlPanel_btnGroup_btn {
        width: 100%;
    }

    .resultPanel .container {
        padding: 31px 28px;
    }

    .link .container {
        padding: 0 28px;
    }

    .link .link_btn {
        width: 100%;
    }
}

.resultPanel_results_result_country img {
    width: 28px;
    margin-right: 15px;
}

.rotation-info {
    text-align: center;
}

.rotation-info img {
    height: 38px;
    margin-bottom: 14px;
}

.rotation-slider-count {
    font-size: 25px;
    margin-bottom: 13px;
    color: #fff0ff;
}

.checker-container {
    max-width: 905px;
!important;
}

@media only screen and (max-width: 770px) {
    .checker-container {
        display: none;
    !important;
    }

    .resultPanel_results_result_image {
        margin-left: 50%;
        margin-bottom: 22px;
    }

    .title-block {
        margin-top: 102px;
    }
}

.resultPanel_results_result_image {
    width: 17px;
}

#modal-proxy-extension .nice-select {
    line-height: 1.4;
    white-space: break-spaces;
}

#modal-proxy-extension .nice-select .option {
    line-height: 1.6;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

@media (max-width: 992px) {
    .proxy-types .row {
        gap: 24px 0;
    }

    .proxy-types .proxy-type-item {
        height: 100%;
    }
}

#modal-proxy-extension .nice-select {
    line-height: 1.4;
    white-space: break-spaces;
    padding: 10px 10px 10px 55px;
}

.proxy-types .col-md-6 {
    display: flex;
    justify-content: center;
}

.examination {
    margin-bottom: 500px;
}

.examination-page {
    padding-top: 60px;
}

.examination-page .breadcrumb {
    margin-bottom: 30px;
}

.examination_block {
    width: 80%;
    margin: 0 auto;
    background: #303038;
    border-radius: 7.03448px;
    padding: 45px 20px 37px 20px;
    margin-bottom: 34px;
}

.examination_block:last-child {
    height: 500px;
}

.examination_action {
    display: flex;
    align-items: center;
    gap: 0 8px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.examination_block .form-control.not_empty {
    background-image: none;
}

.examination_block .your_address {
    background: #4A4A57;
    border-radius: 4.06977px;
    font-weight: 400;
    font-size: 10.5814px;
    line-height: 12px;
    color: #303038;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    height: 46px;
}

.examination_block .send {
    font-weight: 400;
    font-size: 11.4128px;
    line-height: 13px;
    color: #303038;
    background: #03FFA4;
    border: 0.877907px solid #03FFA4;
    border-radius: 4.38953px;
    padding: 15px 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    position: relative;
    min-width: 160px;
}

.examination_block .send:hover {
    box-shadow: 0px 0px 15px #03ffa4;
    background: #03FFA4;
}

.examination_cards {
    display: flex;
    align-items: center;
    gap: 16px 13px;
    flex-wrap: wrap;
    justify-content: start;
}

.examination_block .send .loader {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.card_1 {
    background: #4A4A57;
    border-radius: 5px;
    width: calc(25% - 10px);
    padding: 15px 0 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 47px 0;
    height: 110px;
}

.card_1 .card_title {
    font-weight: 700;
    font-size: 16.0582px;
    line-height: 19px;
    color: #FFFFFF;
    text-align: left;
}

.card_1 .card_bottom {
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.examination_cards a:hover {
    color: #FFFFFF;
    cursor: default;
}

.examination_block .form-control {
    background: #27272D;
    border-radius: 5px;
    height: 46px;
    border: 1px solid transparent;
    background-image: url(https://proxyleet.com/images/real-ip.svg);
    background-repeat: no-repeat;
    color: #fff;
    font-size: 18px;
    background-position: calc(100% - 513px) center;
    width: 550px;
    padding-left: 40px;
}

.examination_block input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #6F6F81;
}

.examination_block input:focus {
    outline: 2px solid #03FFA4;
    box-shadow: none;
}

@media (max-width: 1500px) {
    .examination_block .form-control {
        background-position: calc(100% - 511px) center;
        width: 550px;
    }
}

@media (max-width: 1400px) {
    .examination_block .form-control {
        background-position: calc(100% - 473px) center;
        width: 506px;
    }
}

@media (max-width: 1200px) {
    .examination_block .form-control {
        background-position: calc(100% - 325px) center;
        width: 360px;
    }

    .examination {
        margin-bottom: 300px;
    }

    .examination-page {
        padding-top: 30px;
    }
}

@media (max-width: 992px) {
    .examination-page {
        padding-top: 20px;
    }

    .card_1 {
        width: calc(33% - 10px);
        padding: 15px 7px 10px 10px;
    }

    .examination_action {
        gap: 20px 15px;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .examination_block .form-control {
        width: 100%;
        background-position: calc(100% - 584px) center;
    }

    .examination_block .your_address {
        width: calc(50% - 10px);
    }

    .examination_block .send {
        width: calc(50% - 10px);
    }

    /* .examination {
        margin-bottom: 300px;
    } */
    .examination {
        margin-bottom: 200px;
    }

    .examination_block {
        width: 96%;
        padding: 35px 20px 37px 20px;
    }
}

@media (max-width: 768px) {
    .card_1 {
        width: calc(50% - 10px);
        padding: 15px 0 10px 16px;
    }

    .examination_block .form-control {
        background-position: calc(100% - 432px) center;
    }

    .examination {
        margin-bottom: 150px;
    }

    .examination_block {
        width: 100%;
    }

    .examination-page {
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .card_1 {
        width: 100%;
    }

    .examination_block .form-control {
        background-position: calc(100% - 15px) center;
    }

    .examination_block .form-control::placeholder {
        padding-left: 15px;
    }

    .examination_block input::placeholder {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    /* .examination_block .form-control{
        background-position: left center;
    } */
    .examination-page .breadcrumb {
        margin-bottom: 0;
    }

    .examination-page {
        padding-top: 70px;
    }

    .examination {
        margin-bottom: 100px;
    }

    .examination_block .your_address {
        width: 100%;
    }

    .examination_block .send {
        width: 100%;
        font-size: 10px;
    }

    .examination_block {
        margin-top: 20px;
    }

    .examination_action {
        gap: 20px 0;
    }

    .examination_block input::placeholder {
        font-size: 13px;
    }
}

.card_bottom img {
    width: 17px;
}

@media (max-width: 992px) {
    .main-screen {
        background-image: url(../images/connectmap-main.jpg);
    }

    .main-screen_map {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .main-screen_map {
        display: none;
    }

    .footer-logo img {
        width: 325px;
    }
}

.main-screen-texts {
    backdrop-filter: blur(3px);
}

.jvm-container {
    backdrop-filter: blur(3px);
}

.search-form input {
    border-radius: 9px;
}

.countries-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 5px;
    padding: 15px;
    max-height: 280px;
    transition: .3s all ease;
}

.countries-block.show {
    max-height: 100%;
    padding: 15px;
}

.countries-block .country-item {
    gap: 0 15px;
    padding: 8px 14px;
    margin-bottom: 0;
    margin-left: 4px;
}

.countries-block .country-item .country-flag img {
    height: 25px;
}

.countries-block .country-item .country-name {
    color: #fff;
}

.load-more-btn {
    text-align: center;
    margin: 15px 0;
}

.load-more-btn a {
    font-size: 13px;
    display: inline-block;
    padding: 12px 15px;
    background-color: #03FFA4;
    border-radius: 9px;
    color: #303038;
    text-decoration: none;
    transition: .3s all ease;
}

.load-more-btn a:hover {
    box-shadow: 0 0 8px #03FFA4;
}

@media (max-width: 480px) {
    .countries-block .country-item {
        gap: 0 5px;
        padding: 8px;
        width: 100%;
        justify-content: center;
    }

    .countries-block .country-item .country-name {
        font-size: 14px;
    }

    .countries-block .country-item .country-flag img {
        height: 18px;
    }
}

.errorMessage {
    color: #fff;
    background-color: #4A4A57;
    padding: 33px 285px;
    border-radius: .25rem;
    margin-top: 90px;
}

.termsContainer {
    color: #fff;
    padding: 40px 70px;
    font-size: 19px;
    text-align: center;
}

.termsHeader {
    font-size: 25px;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .termsContainer {
        padding: 0;
    }
}

.private-proxy-description {
    text-align: center;
    color: #6f6f81;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 300;
}

.modal-content .buy-by-promo-code {
    margin-bottom: 4px;
}

.modal-content .promo_inputs_block {
    display: none;
}

.modal-content .promo-code-input {
    display: flex;
    gap: 0 4px;
    background-color: rgba(74, 74, 87, 1);
    padding: 5px;
    border-radius: 5px;
}

.modal-content .promo-code-input input {
    height: 36px;
    padding-left: 53px;
    width: 100%;
    background-image: url(../images/promo.svg);
    background-repeat: no-repeat;
    background-position: 12px center;
}


.modal-content .promo-code-input .btn {
    padding: 9px;
    max-width: 90px;
    color: #303038;
}

@media (max-width: 380px) {
    .modal-content .promo-code-input input {
        padding-left: 30px;
        background-size: 20px;
        background-position: 5px center;
    }

    .modal-content .promo-code-input input::placeholder {

        font-size: 12px;
    }
}

.modal-content .modal-body .btn.btn-grey,
.modal-content .promo-code-input .btn {
    color: #ffffff;
    font-weight: 400;
}
#accept-promo-code{
    color: #303038;
    font-weight: 600;
}
.promo-description {
    text-align: center;
    color: #6F6F81;
    font-size: 15px;
    margin-bottom: 15px;
}

.oldPrice {
    color: #6F6F81;
!important;
    font-size: 15px;
    text-decoration: line-through;
}

/* Устанавливаем ширину карусели */
.glide__track {
    max-width: 100%; /* Ограничиваем ширину трека карусели */
    overflow-x: hidden;
}

