


/*===========================
  18. APPIONTMENT PAGE css 
===========================*/

.about-two-page {
	@media #{$md}{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 30px;
        padding-bottom: 80px;
    }
}

.appointment-page {
    @media #{$md}{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 30px;
        padding-bottom: 80px;
    }
}




.appointment-page-form{
    position: relative;
    z-index: 5;
    background-color: $white;
    padding: 45px;
    
    @media #{$xs}{
        padding: 25px;
    }
    
    & .appointment-form-area{
        
        & .single-form{
            margin-top: 30px;
            position: relative;
            
            & .nice-select{
                background: none;
                width: 100%;
                height: 60px;
                border-radius: 0;
                border: 1px solid $border-color;
                
                &:focus{
                    border-color: $theme-color;
                }
                &::after{
                    width: 10px;
                    height: 10px;
                    border-color: $body-color;
                    right: 23px;
                }
                
                & .current{
                    line-height: 60px;
                    font-size: 15px;
                    color: $body-color;
                    font-family: $rubik;
                }
                
                & .list{
                    margin-top: 3px;
                    border-radius: 0;
                    width: 100%;
                    
                    & .option{
                        font-size: 14px;
                        font-family: $rubik;
                        line-height: 35px;
                        min-height: 35px;
                    }
                }
            }
            
            & input,
            & textarea{
                width: 100%;
                height: 60px;
                border: 1px solid $border-color;
                padding: 0 20px;
                color: $body-color;
                font-size: 16px;
                border-radius: 0;
                &:focus{
                    border-color: $theme-color;
                }
                
                @include placeholder{
                    opacity: 1;
                    color: $body-color;
                }
            }
            
            & textarea{
                height: 160px;
                resize: none;
                padding-top: 15px;
            }
            
            & .icons{
                position: absolute;
                top: 17px;
                right: 20px;
                font-size: 16px;
                color: $body-color;
            }
            
            & .input-group-append{
                position: absolute;
                top: 0;
                right: 0;
                z-index: 5;
                
                & .btn{
                    &.btn-outline-secondary {
                        border-radius: 0;
                        border: 0;
                        width: 60px;
                        height: 60px;
                        color: $body-color;
                    }
                }
            }
            
            & .main-btn{
                width: 100%;
                height: 60px;
                line-height: 60px;
            }
        }
    }
}



.appointment-video{
    position: relative;
    z-index: 5;
    
    & a{
        font-size: 30px;
        color: $theme-color;
        width: 120px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        border-radius: 50%;
        background-color: $white;
        @include transition(0.3s);
        
        &:hover{
            color: $white;
            background-color: $theme-color;
        }
    }
}
























