body {
    -ms-user-select: none; 
	-moz-user-select: none; 
	-webkit-user-select: none; 
	user-select: none; 
}
.wish-row input[type=checkbox]{display:none;}
.wish-row .icon-heart {
    display: block;
}
.wish-row .icon-heart--checked {
    display: none;
}
.wish-row input[type=checkbox]:checked+button .icon-heart--checked {
    display: block;
}
.wish-row input[type=checkbox]:checked+button .icon-heart {
    display: none;
}
.owl-stage {
    margin: 0 auto;
}

.card-page__closed-info {
    margin-top: 35px;
    padding-left: 0;
    padding-right: 0;
    max-width: 1124px;
}

.card-page__closed-info h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
}

.card--free .card__badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 5px 15px rgb(62 128 174 / 50%);
    box-shadow: 0 5px 15px rgb(62 128 174 / 50%);
    color: #fff;
    background-color: #C5C5C5;
}
@media (min-width: 768px) {
    .card-page__closed-info h2 {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 32px;
        text-align: left;
    }
}

.card-page__closed-info table {
    margin-bottom: 20px;
}

.card-page__closed-info img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.owl-carousel.owl-drag .owl-item {
    padding-top: 10px;
}
.owl-carousel .owl-stage {
    padding-top: 4px;
}
.popup__list a {
    color: #6da5cd;
    line-height: 25px;
    font-family: Arial, Helvetica, Arial, sans-serif;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    font-weight: 700
}
.popup-confirmed .popup__subtitle {
    font-size: 22px;
}
.button_spiner {
    
}

.button_spiner:disabled {
    /* filter: grayscale(1);
    opacity: 0.5; */
    background-color: #6da5cd;
    position: relative;
}
.button_spiner::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-image: url("/templates/img/icons/tail-spin.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}
.button_spiner:disabled:before {
    display: flex;
}
.button_spiner:disabled svg, .button_spiner:disabled span {
    display: none;
}
.button_spiner:disabled:hover {
    background-color: #6da5cd;
    border-color: #6da5cd;
    /* filter: grayscale(1);
    opacity: 0.5; */
    color: #fff;
    cursor: not-allowed;
}
@media (min-width: 370px) {
    .button_spiner::before {
        background-size: 40px;
    }
}


/* Table */


.card-page__closed-info table thead {
    background-color: #fdecf0;
    text-align: center;
    font-weight: 600;
}

/* PROGRESS LINE FOR MOBILE DEVICES */
progress {
	display: none;
}
@media (max-width: 768px) {
	.header {
		top: 2px;
	}
	progress{
		position:fixed;
		display: block;
		left:0;
		top:0;
		width:100%;
		height:5px;
		-webkit-appearance:none;
		-moz-appearance:none;
		appearance:none;
		border:none;
		background: #fff;
		color: #f5a0b5;
		z-index: 100;
	}
	progress::-webkit-progress-bar{
		background:transparent;
		border-radius:5px;
	}
	progress::-webkit-progress-value{
		background:#f5a0b5;
		border-radius:5px;
	}
	progress::-moz-progress-bar{
		background:#f5a0b5;
		border-radius:5px;
	}
	.progress-container{
		width:100%;
		background:transparent;
		position:fixed;
		top:0;
		left:0;
		height:5px;
		display:block;
	}
	.progress-bar{
		background:#f5a0b5;
		width:0%;
		display:block;
		height:inherit;
	}
}

.submit-btn--loading {
    color: transparent !important;
    position: relative;
}

.submit-btn--loading span {
    display: block !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}