﻿body {
}

.arrow-icon {
    display: flex;
    align-self: center;
    z-index: 1;
    margin-bottom: 15px;
    cursor: pointer;
    transform: rotate(180deg);
    transition: .2s ease-in all;
}

.arrow-icon.down {
    transform: rotate(0deg);
}

.arrow-icon img {
    width: 36px;
}

p.col-auto {
    width: 80%;
    line-height: 14pt;
    padding-top: 3px;
}

.contact-form {
    background-color: var(--theme-green);
    border-radius: 3rem;
    margin-right: 20px;
    position: sticky;
    top: 75px;
    height: 90vh;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.contact-form form {
    padding-left: 12%;
    padding-right: 8%;
    height: 80vh;
    overflow-y: scroll;
    margin-bottom: 50px;
    margin-right: 3%;
}

.contact-form h4 {
    text-align: center;
    font-size: 20pt;
    line-height: 22pt;
    font-weight: 500;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    color: white;
}

.contact-form input {
    border: none;
    font-size: 12px;
    border-radius: 1rem;
    width: 100%;
    padding: 5px 15px;
}

.contact-form input[type=checkbox] {
    margin-left: 15px;
    margin-bottom: 15px;
    padding: 0px 10px !important;
    width: 24px !important;
    height: 24px !important;
    appearance: none;
    border-radius: 50%;
    background-color: white;
    border: 2px solid white;
}

.contact-form input[type=checkbox]:checked {
    background-color: var(--theme-blue);
}

.contact-form label {
    font-size: 12pt;
    font-weight: 300;
    color: white;
    padding: 15px 0px;
}

.contact-form p {
    font-size: 12pt;
    color: white;
}

.contact-form textarea {
    font-size: 12pt;
    border: none;
    width: 100%;
    height: 200px;
    border-radius: 1rem;
    padding: 10px;
}

/* width */
.contact-form form::-webkit-scrollbar {
    width: 15px;
    border-radius: 27px;
}

/* Track */
.contact-form form::-webkit-scrollbar-track {
    background: white;
    border-radius: 27px;
}

/* Handle */
.contact-form form::-webkit-scrollbar-thumb {
    /*background: #888;*/
    background: var(--theme-pink);
    border-radius: 27px;
    border: 3px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
}

/* Handle on hover */
.contact-form form::-webkit-scrollbar-thumb:hover {
    background: #555;
    background-clip: padding-box;
}

.contact-form form.down {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.contact-form form.down::-webkit-scrollbar {
    display: none;
}

.right-column {
    width: 400px;
    left: calc(100vw - 450px);
    position: fixed;
    top: 58px;
    z-index: 3;
    transition: .2s ease all;
}

.right-column.down {
    top: calc(100vh - 140px);
    z-index: 1;
}

#side-form-submit {
    padding: 8px;
    border-radius: 1rem;
    width: 200px;
    font-size: 12pt;
    border: none;
    margin-top: 20px;
    background-color: white;
    color: var(--theme-blue);
    font-weight: 300;
}

@media (max-width: 768px) {
    .arrow-icon {
        margin-bottom: 10px;
    }

    .contact-form {
        padding-top: 10px;
    }

    .contact-form h4 {
        font-size: 16pt;
        line-height: 18pt;
    }

    .right-column.down {
        top: calc(100vh - 130px);
    }
}

@media (max-width: 480px) {

    .right-column {
        width: 100%;
        left: 0vw;
    }

    .contact-form {
        margin-left: 20px;
    }

}