#cookieNotice.light {
    background-color: #fff;
    color: #393d4d;
    color: var(--cookieNoticeProDark);
}
#cookieNotice.display-right {
    right: 30px;
    bottom: 30px;
    max-width: 400px;
}
#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997;
}

.carousel-item {
    height: 800px;
}

.carousel-caption {
    bottom: 21.25rem !important;
    font-size: 30px;
}
.carousel-caption h5 {
    font-size: 50px;
}
.carousel-caption p {
    font-size: 30px;
}

/* .loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98vw;
    height: 95vh;
}

.loader{
	/* position: fixed; */
	width: 100%;
	height: 100vh;
	/* background: #21242d url('https://www.evotique.in/images/gifs/evotique.gif') no-repeat center; */
	background: url('https://www.evotique.in/images/gifs/evotique.gif') no-repeat center;
	z-index: 999;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    z-index: 1;
}
.carousel-item .carousel-caption {
    z-index: 2;
}

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}
  
input[type=file]::file-selector-button:hover {
    background: #0d45a5;
}