/* Mailchimp Sign Up form */


input[type=submit] {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
    }


input.sign-up-btn {
    border: 1px solid #f39323;
    background-color: #f39323;
    border-radius: 3px;
    font-size: 17px;
    text-transform: uppercase;
    padding: 15px;
    margin-bottom: 15px;
    margin: 20px 0 10px 0;
    color: #fff;
    transition: all .15s ease-in;
    width: calc(100%);
    display: block;
    cursor: pointer;
}

input.sign-up-btn:hover {
    border: 1px solid #737864;
    background-color: #737864;
}



section#sign-up {
    height: 100vh;
    width: 100%;
    background-color: #454C32;
    position: fixed;
    z-index: 9999;
    display: none;
}

section#sign-up .container {
    display: flex;
    flex-flow: column ;
    justify-content: space-around;
    align-items: center;
    /*justify-content: center;*/
    max-width: 450px;
    width: 90%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#popup-form {
    width:100%;
}


    #popup_close_btn {
    position: absolute;
    right: 2%;
    top: 10px;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    z-index: 9999!important;
}


    label.error {
        font-family: National-Regular, sans;
      font-size: 13px;
      color:#fff;
      display: block;
      margin-bottom: 14px;
    }

    input {
        border: 1px solid #737864;
        background-color: #737864;
        border-radius: 3px;
        font-size: 15px;
        padding: 15px ;
        margin-bottom: 15px;
        color: #ff9e05;
        transition: all .15s ease-in;
        width: calc(100% - 30px);
        display: block;
    }

    input[type=submit] {
        font-family: National-Bold, sans;
         font-size: 24px;
            letter-spacing: 2px;
        padding: 10px 10px 10px;
        background-color: #f39323;
        color: #fff;
        border: 1px solid transparent;
        width: 100%;
        cursor: pointer;
        margin-top: 25px;
    }

    input[type=submit]:hover {
        background-color: #BCC69B;
        border: 1px solid transparent;
    }

    input[type=submit]::focus {
        /*border: 1px solid transparent;*/
    }

    #sign-up-form input[type=submit]  {
        margin-top: 65px;
    }

    input:focus {
        /*border-color: rgba(255,255,255,1);
        box-shadow: 0px 0px 8px 2px rgba(255,255,255,0.5);*/
        outline: none;
    }

    input::placeholder {
        color: #fff;
        font-family: National-Regular, sans;
        font-weight: normal;
        font-size: 19px;
    }

    #response {
      width: 100%!important;
      margin-left: -12px;
    }

    #response p {
        font-family: National-Regular, sans;
      color:#fff;
      font-size: 14px;
        margin-top: 10px;
        font-style: italic;
    }

    #response h4 {
        font-family: National-Regular, sans;
      color:#fff;
      margin-top: 7px;
    }

    #response a,
    #response a:hover
     {
      color:#7D9C6B;
    }




    /* CUSTOM SELECT */

    .customer-refer {
        width: 45%;
        color: #fff!important;
        font-family: National-Regular, sans;
        font-size: 16px;
        line-height: 18px;
        margin-top: 3px;
        display: inline-block;
        float: left;
    }

    #custom-dropdown {
        position: absolute!important;
        width: 160px!important;
        margin-left: 160px!important;
    }


    /*the container must be positioned relative:*/
    #sign-up-form div {
        position: relative;
        width: 50%;
        margin-top: 0px;
        margin: 0 0 0 auto;
        color: #7D9C6B;
    }
    .custom-select select {
        display: none; /*hide original SELECT element:*/
    }
    #sign-up-form .select-selected {
        background-color: #737864;
        width: calc(100% - 24px);
        border-radius: 1px;
    }
    #sign-up-form .select-items {
        border: 1px solid #737864;
        width:100%;
    }
    #sign-up-form .select-items div {
        width:100%;
        padding-top: 12px;
    }
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 19px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #7D9C6B transparent transparent transparent;
    }
    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #737864 transparent;
        top: 7px;
    }
    /*style the items (options), including the selected item:*/
    .select-items div,.select-selected {
        color: #7D9C6B;
        font-family: National-Regular, sans;
        font-size: 15px;
        text-transform: uppercase;
        padding: 8px 12px;
        border: 1px solid transparent;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
    }
    /*style items (options):*/
    .select-items {
        position: absolute;
        background-color: #737864;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99;
    }
    /*hide the items when the select box is closed:*/
    .select-hide {
        display: none;
    }
    .select-items div:hover, .same-as-selected {
        background-color: rgba(0, 0, 0, 0.1);
    }

    #popup-form #custom-dropdown {
        position: absolute!important;
        width: 90%!important;
        margin-left: 250px!important;
        background-color: #737864;
        max-width: 200px;
        height: 44px;
        border-radius: 3px;
    }

    #popup-form #custom-dropdown .select-items div, .select-selected {
        color: #fff;
        font-family: National-Regular, sans;
        font-size: 15px;
        text-transform: uppercase;
        padding: 12px 15px;
        border: 1px solid transparent;
        border-radius: 1px;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
        /* height: 25px; */
    }

    #popup-form .customer-refer {
        color: #fff!important;
        font-family: National-Regular, sans;
        font-size: 20px;
        line-height: 20px;
        margin-top: 11px;
        display: inline-block;
        margin-bottom: 40px;
    }




    @media only screen and (max-width: 1300px) {

        input.sign-up-btn {
            padding: 8px;
         
        }

    }






    @media screen and (max-width: 992px) {


        input {
        border: 1px solid #737864;
        background-color: #737864;
        border-radius: 3px;
        font-size: 15px;
        padding: 10px ;
        margin-bottom: 15px;
        color: #ff9e05;
        transition: all .15s ease-in;
        width: calc(100% - 20px);
        display: block;
    }

    input[type=submit] {
        font-size: 17px;
        padding: 7px 7px 10px;
        margin-top: 15px;
    }

    }

    @media only screen and (max-width: 600px) {

        #popup-form #custom-dropdown {
        position: absolute!important;
        width: 100%!important;
        margin-left: 0px!important;
        margin-top: 40px!important;
        max-width: 100%!important;
    }

    #popup-form .customer-refer {
        width:100%!important;
        margin-bottom: 80px!important;
    }


    }


