/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - forms and validation */
/* ----------------------------------------------------------------------------------- */
.contact-form-container {
    display: block;
    font-size: 14px;
    padding: 20px 0;
    width: 50%;
}

.contact-form {
    display: block;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - external (social media) links */
/* ----------------------------------------------------------------------------------- */
ul.external-links {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    list-style: none;
    box-sizing: border-box;
}

.external-link-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 4px solid;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    box-sizing: border-box;
}

.external-link-panel:hover {
    border: 4px solid;
}

.external-link-image {
    width: 20px;
    height: 20px;
}

/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - swal alerts */
/* ----------------------------------------------------------------------------------- */
.swal2-container {
    z-index: 9999 !important;
}

/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - scrollable element */
/* ----------------------------------------------------------------------------------- */
.scrollbox {
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-gutter: stable;
}

.scrollbox:hover {
    overflow-y: auto;
}

.scrollbox:hover::-webkit-scrollbar {
    width: 11px;
}

.scrollbox:hover::-webkit-scrollbar-track {
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}

.scrollbox:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    border: 2px solid;
    padding: 5px;
}

/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - reception links */
/* ----------------------------------------------------------------------------------- */
.site-reception-links {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

/* ----------------------------------------------------------------------------------- */
/* Site/styles.css - media queries */
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 575px) {
    
    .contact-form-container {
        padding: 20px 5px;
        width: 100%;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {

    .contact-form-container {
        padding: 20px 5px;
    }
}