:root {
    --img-width-kofi: calc(var(--text-font-size) + 5px);
}

#contact_content{
    
}
#socialmedia_container{
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
#socialmedia_container_labels{
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.socialmedia_item{
    text-align: center;
}
.socialmedialabel_item{
    text-align: center;
}

#socialmedia_item_img_kofi{
    width: var(--img-width-kofi);
}

.btn-send{
    background-color: #cccccc;
    font-size: 30px;
}
input,
select{
    font-size: 18px !important;
    height: 50px !important;
    font-family: Arial;
    font-weight: normal;
}
textarea{
    font-size: 15px !important;
    font-family: Arial;
    font-weight: normal;
}
label{
    font-weight: normal !important;
}
#contact-captcha-box{
    border: 1px black solid;
}
#contact-captcha-text{
    text-align: center;
    padding: 20px;
}
#contact-captcha-symbols{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    padding: 20px;
    
}
.contact-captcha-symbol{
    text-align: center;
    cursor: pointer;
}
.contact-captcha-symbol:hover{
    color: #999999;
}
.contact-captcha-symbol > i{
    display: inline-block;
    width: 100%;
}
.contact-captcha-symbol.active{
    color: rgb(192,89,76);
}

.contact-custom-file-label{
    border: 1px black solid;
    border-radius: 5px;
}

.custom-file>input{
    /*border: 1px red solid !important;*/
    padding-top: 5px !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 3px);
    }
    textarea{
        font-size: 15px !important;
    }
    #socialmedia_container_labels{
        display: none;
    }
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 5px);
    }
    textarea{
        font-size: 15px !important;
    }
    #socialmedia_container_labels{
        font-size: 20px;
    }
} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 4px);
    }
    textarea{
        font-size: 15px !important;
    }
    #socialmedia_container_labels{
        font-size: 20px;
    }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 4px);
    }
    textarea{
        font-size: 15px !important;
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 6px);
    }
    textarea{
        font-size: 15px !important;
    }
}
/* Incredible large devices (large laptops and desktops, 2500px and up) */
@media only screen and (min-width: 2500px) {
    :root {
        --img-width-kofi: calc(var(--text-font-size) + 8px);
    }
    textarea{
        font-size: 15px !important;
    }
}