﻿/* Contact CSS */
.form-group label {
    color: #6D6D6D;
    display: flex;
    font-weight: normal;
}
.form-group input {
    border-radius: 0;
}
.form-group label{
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}
textarea.form-control {
    margin-bottom: 1rem;
}
.form-group > button {
    background-image: none;
    border: 0;
    border-radius: 0;
    font-family: 'Montserrat';
    text-transform: uppercase;
    transition: 0.4s;
    font-weight: 600;
    font-size: 24px;
}
.text-contacts, .text-contacts li {
    font-size: 18px;
    line-height: 2rem;
}
.ul-contacts {
    column-count:2;
    column-gap: 0;
}
.link-contacts {
    color: #ff6600 !important;
    font-size: 18px;
}
.link-contacts-dark {
    color: #3d3d3d;
    font-size: 18px;
}
.hr-style-one {
    border: 0;
    height: 1px !important;
    background-color: rgb(0, 0, 0);
}
.link-social{
    color: #ff6600 !important;
    font-size: 18px;
}
.write-us{
    font-size: 24px;
    font-weight: bold;
}
.sendMailMessage {
    display: block;
    min-height: 30px;
}
.btn-custom.is-disabled,
.btn-custom:disabled {
    opacity: 0.8 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transition: none !important;
    filter: none !important;
}
.loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.alert-info-custom {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* ______ MEDIA QUERIES ______ */
@media (min-width:1100px){
    .contact-padding {
        padding-right: 3rem !important;
    }
}

@media (max-width:1099px){
    .contact-padding{
        padding-right: 1rem !important;
    }
    .text-contacts, .text-contacts li, .text-contacts li a{
        font-size: 14px;
    }
    .link-social{
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .contact-padding{
        padding-right: 0 !important;
    }
}