/*110px   
68px
42px
26px
16.00px*/




.main-content {
    position: relative;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
}

.mc-content {
    min-height: 100%;
    width: 100%;
    background-color: #fff;
    position: absolute;
    visibility: hidden;
    filter: brightness(1);
}

.mc-content img {
    width: 50%;
    /*height: 400px;*/
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.description-container {
    position: absolute;
    bottom: 100px;
    left: 75px;
    width: 600px;
}

.line-container {
    width: 100%;
    height: 4px;
    overflow: hidden;

}

.line {
    width: 100%;
    height: 100%;

    background-color: aqua;

}

.dc-text-1-container {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.dc-text-2-container {
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.dc-text-1 {
    font-size: 41px;
    font-family: Univa Nova;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    /*padding-bottom: 10px;*/
}

.dc-text-2 {
    font-size: 15px;
    font-family: Univa Nova;
    padding-top: 10px;
    width: 100%;
    height: 100%;
}

.buynow-container {
    position: absolute;
    top: 50%;
    left: 75px;
    transform: translateY(-50%);

}

.price-container {
    width: 165px;
    height: 70px;

}

.price {
    width: 100%;
    height: 100%;
    font-size: 70px;
    font-family: Univa Nova;
    position: relative;

}

.price-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: right;
    visibility: hidden;
    opacity: 0;

}

.price-text-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 120%;
    background-color: aqua;
}


.button {

    font-size: 21px;
    padding: 5px 25px 5px 25px;
    /* background-color: grey; */
    border-radius: 10px;
    margin-top: 20px;
    font-family: Univa Nova;
    color: black;
    text-align: center;
    border: 1px solid black;
    cursor: pointer;
    box-shadow: 10px 10px 10px rgb(0 0 0 / 20%);
}

.button:active {
    transform: scale(0.98);
    box-shadow: 5px 5px 5px rgb(0 0 0 / 20%);
}

.dollar {
    display: inline-block;
    animation-name: rotate;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    visibility: hidden;
    opacity: 0;
}

.mc-title {
    font-size: 48px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;

}

.mc-title:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mc-title:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
}

.click-direction {
    width: 200px;
    position: absolute;
    top: 15%;
    left: 0;
    z-index: 9;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    text-align: center;
    padding: 5px 20px;
    display: none;
}




@keyframes rotate {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@media (max-width:1024px) {
    .mc-content img {
        left: 40%;
        width: 60%;

    }

}

@media (max-width:769px) {
    .buynow-container {
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mc-content img {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .dc-text-1-container,
    .dc-text-2-container {
        text-align: center;
    }

    .description-container {
        left: 50%;
        transform: translateX(-50%);
        width: 481px;


    }

}

@media (max-width: 481px) {
    .mc-content img {

        width: 90%;

    }

    .dc-text-1 {
        font-size: 26px;
    }

    .dc-text-2 {
        font-size: 11px;
    }


}

@media (max-width:) {}