.login-register-bg {
    background-color: #FF6961;
}

.input-width {
    width: 350px;
}

.input-before-login {
    border: 3px solid black;
    border-radius: 20px;
    height: 50px;
    width: 100px;
}

.input-before-login-error {
    border: 3px solid red !important;
    border-radius: 20px;
    height: 50px;
    width: 100px;
}
.text::-webkit-input-placeholder {
    color: gainsboro;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.btn-size-40
{
    width: 40%;
}

.m-top-20
{
    margin-top: 20px;
}
.m-top-25
{
    margin-top: 25px;
}


.m-top-10
{
    margin-top: 10px;
}

.m-top-30
{
    margin-top:30px;
}

.m-top-40
{
    margin-top:40px;
}

.m-top-50
{
    margin-top:50px;
}

.m-top-60
{
    margin-top:60px;
}

.m-top-70
{
    margin-top:70px;
}


.m-top-80
{
    margin-top:80px;
}

.m-buttom-30
{
    margin-bottom: 30px;
}


.button-design
{
    background-color: black;
    color: white;
    font-size: 12px;
    border-radius: 12px;
}
.button-design:hover{
    color: white;!important;
}
.text-color
{
    color: white;
}

.field-icon {
    float: right;
    margin-right: 20px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.label1 {
    /* width: 125px;*/
    display: block;
    float: left;
    font-size: 14px;
    color: black;
    font-weight: 600;
}
.input-module-input
{
    border: 2px solid lightgray;
}
/*square radio button*/

.label2 {
   /* width: 125px;*/
    display: block;
    float: left;
    font-size: 14px;
    color: white;
    font-weight: 600;
}
.label2 input {
    display: none;
}
.label2 span {
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
    float: left;
   /* margin: 0 21px 0 0;*/
    position: relative;
    background-color: #ef7878;
}
.label2.active span:after {
    content: "\2713";
    position: absolute;
    left: 5px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #d26d6d00;
}
.resend
{
    font-size: 14px;

}

/*main template design*/
.card-p
{
    font-size: 14px;
    font-weight: bold;
}
.post-drivers-name
{
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    margin-top: 7px;

}

.post-drivers-name-sub
{
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
    margin-top: -20px;

}

.post-driver-img
{
    border-radius: 50%;width: 50px;height: 50px;
}

.btn-black {
    background-color: #000000 !important;
    border: 1px solid #000000 !important;
    /* -webkit-box-shadow: 0 7px 14px 0 rgba(47, 70, 134, .5); */
    /* box-shadow: 0 7px 14px 0 rgba(47, 70, 134, .5); */
    /* color: #fff;
    }
    /*end*/

    display: inline-block;
    font-weight: 400;
    color: white;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-black:hover
{
    color: white !important;
}



.btn-white {
    background-color: white !important;
    border: 1px solid white !important;
    border-radius: 20px;
    /* -webkit-box-shadow: 0 7px 14px 0 rgba(47, 70, 134, .5); */
    /* box-shadow: 0 7px 14px 0 rgba(47, 70, 134, .5); */
    /* color: #fff;
    }
    /*end*/

    display: inline-block;
    font-weight: 400;
    color: black;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 10px;
    line-height: 1.5;

    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-white:hover
{
    color: white !important;
}


/*custome raddio button*/


/* The container */
.custome_radio_button {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: black;
}

/* Hide the browser's default radio button */
.custome_radio_button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custome_radio_button:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.custome_radio_button input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custome_radio_button input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custome_radio_button .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/*end*/











.job-b-i
{
    line-height: 0.9;

    font-size: 12px;
    color: black;
    font-weight: bold;
}


/*right notification part*/
.sidebar {

    color: black;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    position: fixed;
    right: 0;
  height: 250px;
    width: 0px!important;
    /*width: 60px;*/
    border-left: 35px solid black;
    z-index: 2;
    border-bottom-left-radius: 40px;
    border-top-left-radius:40px; ;
    cursor: pointer;
    transition: width 1s;

}

.sidebar1 {
background-color: white;
    color: black;
    height: 100%;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;

    width: 300px;
    border-left: 35px solid black;
    z-index: 2;
    border-bottom-left-radius: 40px;
    border-top-left-radius:40px; ;
    transition: width 2s;

}

#sidebar-nav {

  margin-top: -260px;

}
.vertical-text{
    transform: rotate(90deg);
    transform-origin: left top 0;
    color: white;;
    margin-left: 90%;
    font-size: 20px;
    font-weight: bold;


    /*transform: rotate(90deg);
    transform-origin: left top 0;
    color: white;
    margin-left: 0%;
    font-size: 20px;
    font-weight: bold;
    margin-top: 27%;*/


}



.vertical-text1{
transform: rotate(90deg);
  transform-origin: left top 0;
  color: white;
  margin-left: 0%;
  font-size: 20px;
  font-weight: bold;
  margin-top: 27%;
}


.span-error
{
    font-size: 12px;
    font-weight: 500;
    color: red;
}
.dataTables_filter input
{
    border: 2px solid lightgrey;
}

.posted-load-text
{
    font-weight: bold;font-size: 12px;
    line-height: 0.5;
}



#btnSaveSign {
    color: #fff;
    background: #f99a0b;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
}
#signArea{
   /* width:304px;*/
   /* margin: 50px auto;*/
}
.sign-container {
    width: 60%;
    margin: auto;
}
.sign-preview {
    width: 150px;
    height: 50px;
    border: solid 1px #CFCFCF;
    margin: 10px 5px;
}
.tag-ingo {
    font-family: cursive;
    font-size: 12px;
    text-align: left;
    font-style: oblique;
}


.error-show{
    border: 2px solid red;
}

/*upload logo preview*/
.avatar-wrapper {
    position: relative;
    height: 180px;
    width: 180px;
    margin: 15px auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 1px 1px 15px -5px black;
    transition: all .3s ease;
}
.avatar-wrapper:hover{
     transform: scale(1.05);
     cursor: pointer;
 }
.avatar-wrapper:hover .profile-pic{
     opacity: .5;
 }
.profile-pic {
    height: 100%;
    width: 100%;
    transition: all .3s ease;
}
.profile-pic:after{
     font-family: FontAwesome;
     content: "\f007";
     top: 0; left: 0;
     width: 100%;
     height: 100%;
     position: absolute;
     font-size: 190px;
     background: #ecf0f1;
     color: #34495e;
     text-align: center;
 }

.upload-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.fa-arrow-circle-up{
    position: absolute;
    font-size: 234px;
    top: -17px;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: all .3s ease;
    color: #34495e;
}
fa-arrow-circle-up:hover .fa-arrow-circle-up{
     opacity: .9;
 }


/**/

/*password validation*/
.list-group{
    z-index:9999999;display:none;
position: absolute;
    text-align: center;
    margin-top: 40px;
    margin-left: 80px;
    width: 250px;
    color:red;
}

.list-group-item{
    text-align: left;
    line-height: 0.1;
    padding: 10px;
    font-size: 10px;
}


/*swipe check box*/

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.custom-control-label:hover
{
    cursor: pointer;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}



/*end*/

.hello-msg
{
    font-size: 50px; font-weight: 100;line-height: 0.5;
}

.button-design
{width: 40%;}
#content-desktop {display: block;}
#content-mobile {display: none;}

@media screen and (max-width: 768px) {
    .m-top-80
    {
        margin-top: 40px;
    }
.m-top-50
{
    margin-top: 40px;
}
    .button-design
    {width: 80%;}

    .hello-msg
    {
        font-size: 30px; font-weight: bold;
        margin-top: 10px;
    }

    #content-mobile {display: block;}
    #content-desktop {display: none !important;}
    .page-wrapper {
        padding-top: 25px;
    }

    .page-content {
        width: 95%;
    }
    .left-sidenav {
        position: fixed;
        top: 45px;
        overflow-y: auto;
        z-index: 1;
        bottom: 0;
        transition: 0.1s;
    }

}



/*fixed size of div */
.fixed-div-size{
    height:80vh;


}



.fixed-div-size1::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 15px;
    background-color: #F5F5F5;
}

.fixed-div-size1::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.fixed-div-size1::-webkit-scrollbar-thumb
{
    border-radius: 15px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #D62929;
}
.fixed-div-size1
{
    height:55vh;
    overflow-x: hidden; //horizontal
overflow-y: scroll; //vertical
}



