


/*===========================
 15. VAIDEO APPOINTMENT css 
===========================*/


.video-appointment{
    @media #{$md}{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 30px;
        padding-bottom: 50px;
    }
}


.video-icon{
    position: relative;
    z-index: 5;
    
    & a{
        width: 150px;
        height: 150px;
        line-height: 150px;
        text-align: center;
        border-radius: 50%;
        background-color: $white;
        font-size: 40px;
        color: $theme-color;
        @include transition(0.3s);
        
        &:hover{
            color: $white;
            background-color: $theme-color;
        }
        
        @media #{$xs}{
            width: 120px;
            height: 120px;
            line-height: 120px;
            font-size: 30px;
        }
    }
}




.make-appointment{
    position: relative;
    z-index: 5;
    
    & .appointment-content{
        background-color: $white;
        padding: 40px 45px;
        
        @media #{$xs}{
            padding: 25px 30px;
        }
        
        & .appointment-title{
            font-size: 35px;
            font-weight: 600;
            margin-bottom: 25px;
            color: $heading-color;
            
            @media #{$xs}{
                font-size: 28px;
            }
        }
        & .text{}
        
        & .appointment-items{
            margin-top: 35px;
            position: relative;
            
            & .items-icon{
                position: absolute;
                top: 0;
                left: 0;
                
                & i{
                    font-size: 24px;
                    color: $heading-color;
                    
                    @media #{$xs}{
                        font-size: 18px;
                    }
                }
            }
            & .items-content{
                padding-left: 30px;
                
                & .items-title{
                    color: $heading-color;
                    font-size: 24px;
                    font-weight: 500;
                    font-family: $rubik;
                    margin-bottom: 15px;
                    
                    @media #{$xs}{
                        font-size: 18px;
                    }
                }
                & p{}
            }
        }
    }
    & .appointment-btn{
        & .main-btn{
            width: 100%;
            height: 70px;
            line-height: 68px;
        }
    }
}


/*==== INDEX 2 ====*/


.appointment-two-area{
    @media #{$md}{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    @media #{$xs}{
        padding-top: 80px;
        padding-bottom: 30px;
    }
}


.appointment-two{
    padding: 50px 30px;
    @include box-shadow (0px 0px 20px 0px rgba(72,127,255,0.2));
    
    @media #{$xs}{
        padding: 40px 20px;
    }
    
    & .appointment-two-title{
        & .title{
            font-size: 30px;
            font-weight: 600;
            
            @media #{$xs}{
                font-size: 20px;
            }
        }
    }
    & .appointment-two-form{
        & .single-appointment-form{
            margin-top: 30px;
            position: relative;
            
            & .nice-select{
                background: none;
                width: 100%;
                height: 60px;
                border-radius: 50px;
                border: 1px solid $border-color;
                padding: 0 30px;
                
                @media #{$xs}{
                    height: 50px;
                    padding: 0 20px;
                }
                
                &:focus{
                    border-color: $theme-color;
                }
                &::after{
                    width: 10px;
                    height: 10px;
                    border-color: $border-color;
                    right: 23px;
                }
                
                & .current{
                    line-height: 60px;
                    font-size: 15px;
                    color: $body-color;
                    font-family: $rubik;
                    
                    @media #{$xs}{
                        line-height: 50px;
                        font-size: 14px;
                    }
                }
                
                & .list{
                    margin-top: 3px;
                    border-radius: 0;
                    width: 100%;
                    
                    & .option{
                        font-size: 14px;
                        font-family: $rubik;
                        line-height: 35px;
                        min-height: 35px;
                    }
                }
            }
            
            & input{
                width: 100%;
                height: 60px;
                border: 1px solid $border-color;
                padding: 0 30px;
                color: $body-color;
                font-size: 16px;
                border-radius: 0;
                border-radius: 50px;
                
                &:focus{
                    border-color: $theme-color;
                }
                
                @media #{$xs}{
                    height: 50px;
                    font-size: 14px;
                    padding: 0 20px;
                }
                
                @include placeholder{
                    opacity: 1;
                    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: $border-color;
                    }
                }
            }
            
            & .icons{
                position: absolute;
                top: 17px;
                right: 20px;
                font-size: 16px;
                color: $border-color;
            }
            
            & .main-btn{
                border-radius: 50px;
                
                &::before{
                    border-radius: 50px;
                }
                
                &:hover{
                    @include box-shadow (0px 6px 20px 0px rgba(72,127,255,0.65));
                }
            }
        }
    }
}





















