/* Sticky bar */
#cd-redirection-sticky-bar {
    display: none;
}

.cd-sticky-bar {
    position: fixed;
    z-index: 9999;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.cd-sticky-bar-primary-msg {
    display: inherit;
    width: 95%;
    justify-content: center;
    align-items: center;
}

.cd-sticky-bar-close-icon {
    display: inline-flex;
    cursor: pointer;
}

.cd-sticky-bar-button {
    margin-left: 20px;
    border-radius: 10px;
    cursor: pointer;
}
@media (max-width: 550px) {
    .cd-sticky-bar-button {
        margin-left: 0px;
    }
}


.cd-sticky-bar-button p {
    margin: 5px;
}


/* Pop up */
.cd-blured {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.4);
}

#cd-unavailable-popup, #cd-redirection-popup {
    display: none;
}

.cd-popup {
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    border-radius: 15px;
    width: 500px;
    margin-top: 50px;
    overflow: auto; /* Enable scroll if needed */
}
@media (max-width: 550px) {
    .cd-popup {
        width: 350px;
        margin-top: 20px;
    }
}

.cd-popup-img {
    border-radius: 15px 15px 0px 0px;
    width: 500px;
}
@media (max-width: 550px) {
    .cd-popup-img {
        width: 350px;
    }
}

.cd-popup-primary-msg {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 110px;
    margin-right: 110px;
}
@media (max-width: 550px) {
    .cd-popup-primary-msg {
        margin-left: 30px;
        margin-right: 30px;
    }
}

.cd-popup-primary-msg p {
    margin-bottom: 0px;
}

.cd-popup-secondary-msg {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
    margin-left: 50px;
    margin-right: 50px;
}
@media (max-width: 550px) {
    .cd-popup-secondary-msg {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 0px;
    }
}

/* P heigher has 18. 12 + 18 = 30 as on redirection-popup-bottom */
.cd-unavailable-popup-secondary-msg {
    margin-bottom: 12px;
}

.cd-popup-buttons {
    margin-top: 0px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.cd-popup-button {
    border-radius: 10px;
    margin: 5px;
    cursor: pointer;
}

.cd-popup-button p {
    margin: 15px;
}
@media (max-width: 550px) {
    .cd-popup-button p {
        margin: 5px
    }
}


.cross-stand-alone {
	overflow: hidden;
	position: relative;
	border: none;
	padding: 0;
	width: 2em; height: 2em;
	border-radius: 50%;
	background: transparent;
	font: inherit;
	text-indent: 100%;
	cursor: pointer;
}

.cross-stand-alone:focus {
    outline: solid 0 transparent;
    box-shadow: 0 0 0 2px #8ed0f9
}

.cross-stand-alone:hover {
    background: rgba(29, 161, 142, .1)
}

.cross-stand-alone:before, .cross-stand-alone:after {
    position: absolute;
    top: 15%;
    left: calc(50% - .0625em);
    width: .125em;
    height: 70%;
    border-radius: .125em;
    transform: rotate(45deg);
    background: var(--cross-stand-alone-backgroundcolor);
    content: ''
}

.cross-stand-alone:after {
    transform: rotate(-45deg);
}

