﻿.error {
    color: red;
}

.button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--qlink-olive-green);
    color: black;
    text-decoration: none;
    border-radius: 60px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    width: 150px;
    max-width: 45px; /** I'm animating max-width because width needs to be auto, and auto can't be animated **/
    -webkit-transition: max-width 0.5s;
    transition: max-width 0.5s;
}

    .button:hover {
        max-width: 500px;
        cursor: pointer;
    }

.icon {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    margin-right: 10px;
    padding: 0px 14px;
    display: flex;
    align-items: center;
    color: black;
}

.text {
    white-space: nowrap;
    padding-right: 8px;
    font-size: 16px;
    color: black;
}

.contactNumber {
    color: var(--primary-color)
}

.contactSupport {
    color: var(--primary-color);
    font-size: 14px;
}

.contactSupportLogin {
    color: var(--primary-color);
    font-size: 15px;
}

.wrapper-chat {
    z-index: 10;
    position: fixed;
    right: 20px;
    bottom: 10%;
    width: 350px;
    max-height: 500px;
    background-color: #d4caca;
    border-radius: 5px;
    transition: all 0.4s;
    border: solid;
    border-color: black;
    display: none;
    overflow: auto;
}

.header-chat {
    padding: 13px;
    background-color: blue;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 10px;
    color: #fff
}

.tabs {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}

#tab-button {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

    #tab-button li {
        display: table-cell;
        width: 20%;
    }

        #tab-button li a {
            display: block;
            padding: .5em;
            background: var(--qlink-light-mint);
            border: 2px solid #000;
            text-align: center;
            color: black;
            text-decoration: none;
        }

        /* #tab-button li:not(:first-child) a:hover{
            border-left: none;
        } */
        #tab-button li:first-child a {
            border-radius: 10px 0px 0px 0px;
        }

        #tab-button li:last-child a {
            border-radius: 0px 10px 0px 0px;
        }

    /*#tab-button li a:hover,*/
    #tab-button .is-active a {
        border-bottom-color: transparent;
        background: var(--primary-color);
        color: black;
        border: 2px solid #000;
    }

.tab-contents {
    padding: .5em 0.5em 1em;
    border: 1px solid #ddd;
    background: white;
    border-radius: 0px 0px 10px 10px;
}



.tab-button-outer {
    display: none;
}

.tab-contents {
    margin-top: 20px;
}

.btnsubmit {
    background: #00b495;
    color: #FFF;
    line-height: 35px;
    border-radius: 4px;
}

.header-bg {
    background: var(--qlink-olive-green);
    padding: 10px 0px 75px 0px;
    color: black;
}

textarea:hover,
input:hover,
select:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
select:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.requiredField:after {
    content: " *";
    color: red;
}

@media screen and (min-width: 768px) {
    .tab-button-outer {
        position: relative;
        z-index: 2;
        display: block;
    }

    .tab-select-outer {
        display: none;
    }

    .tab-contents {
        position: relative;
        top: -1px;
        margin-top: 0;
    }
}
