/* Social Media */
.social-container{
    position: fixed;
    top: 40%;
    right: 0px;
    display: flex;
    transition: 0.5s;
    z-index: 2;
}
button#social-toggle{
    width: 25px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: rgb(203, 255, 248);
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
}
button#social-toggle svg{
    fill: #181818;
}
.social-media {
    width: 43px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(3px + 1vw);
    padding: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 0px 1px 1px #00000010;
}
.social-media svg{
    width: 30px;
    height: 30px;
}
.social-container.active{
    transform: translateX(43px);
    transition: 0.5s;
}
.facebook svg{
    fill: blue;
}
.line svg{
    fill: rgb(1, 203, 1);
}
.youtube svg{
    fill: red;
}

/* Policy Content */
.policy-container{
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 10px;
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0px 0px 1px 1px #00000015;
}
.policy-container a{
    color: #f12dff !important;
}
.policy-flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(30px + 1vw);
}
.policy-content{
    font-size: calc(12px + 0.2vw);
}
.policy-option{
    display: flex;
    gap: calc(10px + 0.5vw);
}
.policy-option button{
    height: 30px;
    border: none;
    padding: 5px 15px;
    display: flex;
    border-radius: 2px;
    color: #FFFFFF !important;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 1px 1px #00000010;
    cursor: pointer;
}
button#not-accept{
    background-color: #8d8d8d;
}
button#accept{
    background-color: #eb05fb;
}
button#close-policy{
    background-color: transparent;
    box-shadow: none;
}

/* Footer */
footer{
    background-color: #fff9f9;
    position: relative;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around !important;
    gap: calc(50px + 0.5vw);
    padding: 80px;
}
footer img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    -o-object-fit: cover;
       object-fit: cover;
    filter: opacity(0.5);
}
footer ul{
    font-size: calc(15px + 0.2vw);
    font-weight: 700;
    list-style: none;
    margin: 0px;
    padding: 0;
    z-index: 1;
}
footer ul li a{
    font-size: calc(12px + 0.2vw);
    font-weight: 500;
    color: #545454;
}
footer ul li a:hover{
    color: #ffb30f !important;
}
.footer-product2{
    margin-top: 25px;
}
.left-footer{
    z-index: 1;
}
.left-footer h3{
    font-weight: 700;
    font-size: calc(15px + 0.2vw);
}
.right-footer{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: calc(100px + 0.1vw);
}
@media (max-width: 500px) {
    .right-footer{
        gap: calc(50px + 0.1vw);
    }
}
