#vain-elamaa-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 999999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.popup-content {
    padding: 50px;
}
.popup-top-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding-bottom: 28px;
}

.popup-top-section .loader {
    width: 60px;
    height: 60px;
    border: 10px solid #00D132;
    border-top: 10px solid #93cc94;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;

}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.popup-wrapper {
    display: flex;
    flex-direction: row;
    
}

@media (max-width: 768) {
    .popup-top-section {
        flex-direction: column;
    }
    .popup-wrapper {
        flex-direction: column;
    }

}

.popup-asset {
    width: 100%;
    height: auto;
    overflow: hidden;
    min-width: 480px;
}

.popup-asset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-content h2 {
    font-size: 38px;
    padding-bottom: 12px;
}

@media (max-width: 1000px) {
    .popup-wrapper {
        flex-direction: column;
    }
    #vain-elamaa-popup {
        width: calc(100% - 40px);
        max-width: 500px;
        margin: auto;
    }
    .popup-asset {
        min-width: auto;
    }

    .popup-content {
        padding: 20px 20px 32px 20px; ;
    }

    .popup-content h2 {
        font-size: 32px;
    }
    .popup-top-section .loader {
        width: 50px;
        height: 50px;
    }
}



.move-btn {
    font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	display: flex;
    gap: 8px;
	padding: 12px 18px;
    font-family: Poppins;
    -webkit-font-smoothing: antialiased;
	width: fit-content;
	text-decoration-line: none;
	justify-content: center;
	align-items: center;
	color: #000;
    background-color: #00D132;
    border: 4px solid #00D132;
    cursor: pointer; 
}
.move-btn svg, .cancel-btn svg {
    height: 24px;
    width: 24px;
}

.move-btn:hover, .move-btn:focus {
    background-color: #fafafa;
}

.cancel-btn {
    margin-top: 10px;
    font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	display: flex;
    gap: 8px;
	padding: 12px 18px;
	width: fit-content;
	justify-content: center;
	align-items: center;
	color: #000;
    cursor: pointer;
    background-color: transparent;
    border: none;  
}

.cancel-btn:hover, .cancel-btn:focus {
    text-decoration: underline;
}

.popup-layer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999998;
}