:root {
	--primary-color: #4834d4;
	--success-color: #6ab04c;
	--warning-color: #f0932b;
	--danger-color: #4834d4;
	--bs-color: rgb(255, 153, 0);
	--cr-color: rgb(255, 0, 0);
	--cc-color: rgb(211, 95, 0);

	--light-color: #212529;
	--light-second-color: #727475;
	--light-background: #ffffff;
	--light-second-background: #f1f1f1;

	--dark-color: #909090;
	--dark-second-color: #f5f6fa;
	--dark-background: #23242D;
	--dark-second-background: #181818;
}

*{
    font-family: 'Dosis';
}
*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    background: linear-gradient(
        135deg,
        #0e26ff,
        #00aeff
    );
}
.container{
    background-color: #ffffff;
    width: 60%;
    max-width: 520px;
    min-height: 369px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 58%;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.image-container{
    position: relative;
    width: 100%;
}
.img{
    position: relative;
    width: 100%;
    display: none;
}
.active{
    display: block;
}
.dot-container{
    width: 150px;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
button{
    outline: none;
    cursor: pointer;
}
.dot-container button{
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 3px solid #0e26ff;
    background-color: transparent;
}
.dot-container button:nth-child(1){
    background-color: #0e26ff;
}
#prev,#next{
    height: 40px;
    width: 40px;
    position: absolute;
    background-color: #00d9ff;
    color: #ffffff;
    margin: auto;
    top: 0;
    bottom: 0;
    border: none;
    border-radius: 11px;
    font-size: 23px;
    font-weight: bolder;
}
#prev{
    left: 10px;
    bottom: 30px;
}
#next{
    right: 10px;
    bottom: 30px;
}
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@700&display=swap');
@media screen and (max-width:1200px){
    .container{
        top: 60%;
    }
}
@media screen and (max-width:540px){
    .container{
        top: 50%;
        width: 70%;
        margin-top: 70px;
    }
    button{
        outline: none;
        cursor: pointer;
    }
    .dot-container button{
        height: 10px;
        width: 10px;
        border-radius: 60%;
        border: 2px solid #0e26ff;
        background-color: transparent;
        padding: 5px;
    }
    .dot-container button:nth-child(1){
        background-color: #0e26ff;
    }
    #prev,#next{
        height: 40px;
        width: 40px;
        position: absolute;
        background-color: transparent;
        color: #00d9ff;
        margin: auto;
        top: 0;
        bottom: 0;
        border: none;
        border-radius: 49px;
        font-size: 24px;
        font-weight: bolder;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 30%;
        width: 25px;
        height: 30px;
    }
    #prev{
        left: 2px;
        bottom: 50px;
    }
    #next{
        right: 2px;
        bottom: 50px;
    }
}
@media screen and (max-width:455px){
    .container{
        top: 50%;
        width: 95%;
    }
    #prev,#next{
        height: 40px;
        width: 40px;
        position: absolute;
        background-color: transparent;
        color: #00d9ff;
        margin: auto;
        top: 0;
        bottom: 0;
        border: none;
        border-radius: 3px;
        font-size: 22px;
        font-weight: bolder;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 30%;
        width: 25px;
        height: 30px;
    }
    #prev{
        left: 2px;
        bottom: 50px;
    }
    #next{
        right: 2px;
        bottom: 50px;
    }
}

@media (prefers-color-scheme: dark){
    body{
        background: var(--dark-second-background);
        background-color: var(--dark-second-background);
    }
    .overlay-scrollbar{
        background: var(--dark-second-background);
        background-color: var(--dark-second-background);
    }
    .download_link a, .download_link input, .download_link button, #authorize_dl_btn {
        color: rgb(255, 255, 255);
        border: 2px solid rgb(255, 255, 255);
        
    }
}