* {
    box-sizing: border-box
}

body {
    margin: 0
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
    border-radius: 50px;
    margin-top: auto;
}

/* Slideshow container */
.slideshow-container {
    width: 60vh;
    /* height: 60vh; */
    position: relative;
    background-color: #1a1a1a;
    border-radius: 50px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 150%;
    width: 50px;
    height: 50px;
    padding-top: 8px;
    margin-top: -22px;
    color: #626263;
    font-weight: bold;
    /* font-size: 18px; */
    transition: 0.6s ease;
    border-radius: 100%;
    text-align: center;
    user-select: none;
    background-color: rgb(223, 222, 226);
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover,
.next:hover {
    background-color: #b3b3bb;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #626263;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 20px;
    left: 25px;
    background-color: #dfdee2;
    border-radius: 50px;
}

.dotcontainer {
    width: 60vh;
    translate: 0% -6vh;
    text-align: center;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #8f8e90;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active,
.dot:hover {
    background-color: #313132;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: .3s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media only screen and (min-width: 1600px) {
    .buy-page {
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media only screen and (max-width: 1600px) {
    .buy-page {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media only screen and (max-width: 1200px) {
    .buy-page {
        padding-left: 2%;
        padding-right: 2%;
    }
}

.buy-page {
    display: flex;
    width: 100%;
}

.left {
    float: left;
}

.right {
    float: right;
    padding: 5%;
    width: 100%;
}

.optionBox {
    width: 100%;
    height: 100px;
    border: solid #d6f0fa 2px;
    /* text-align: center; */
    padding: 5% 5%;
    border-radius: 16px;
    margin-top: 20px;
    color: #d6f0fa;
}

.optionBox p {
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    text-align: left;
    font-size: 75%;
}

.optionBox .price {
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    text-align: right;
    font-size: 100%;
}
.optionBox:hover {
    background-color: black;
    cursor:pointer;
}