.text-in-picture, .container-request {
    padding-left: 15%;
    padding-right: 15%;
    display: none;
}

html,body{
    width: 100%;
    height: 100%;
}

body {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none; 
    font-family: 'Roboto Regular';
    overflow: auto;
}

.navbar {
    height: 78px;
    margin-bottom: 0;

    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.10);
    padding-left: 15%;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-logo {
    background: url(../Common/img/logo-with-name.png) no-repeat;
    background-size: cover;
    width: 80px;
    height: 80px;
}

.navbar-title {   
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    
    text-align: left;

    float: left;
    padding-top: 20px;
    padding-left: 15px;
}

.container-home {
    width:auto;
    height: 300px;
   
    background: url(../Common/img/mainpage_bg.png) no-repeat;
    background-size: cover;
    background-position: center;

    align-items: center;
    display: flex;
}

.navbar-menu {
    margin-left: 60px;
    display: flex;
}

.navbar-item {
    color: #222222;
    font-size: 14px;
    white-space: nowrap;
    line-height: 1;
    list-style-type:none; 
    padding: 10px 20px;
    position: relative;
    transition: 0.2s all linear;
    cursor: pointer;
}

.navbar-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 100%;
    border-bottom: 2px solid #4090FF;
    transition: 0.2s all linear;
}

.navbar-item:hover::before {
    width: 100%;
    top: 0;
    left: 0;
    transition-delay: 0.1s;
    border-bottom-color: #4090FF;
}

.navbar-item:hover ~ .navbar-item::before {
    left: 0;
}

.container-request {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.new-request {
    background-color: #4090ff;
    width: 48%;
    height: 90%;

    padding: 40px;
    margin-top: 30px;
    margin-right: 30px;   
}

#new-customer-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

#new-customer-body {
    color: #ffffff;
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 15px;
}


.new-customer-submit {
    background-color: #ffffff !important;
    color: #4090FF !important;
}

.new-customer-submit:hover {
    background: #faf3f3;
}

.old-request {
    width: 48%;
    height: 90%;
    padding: 30px;
    padding-bottom: 0;
}

#old-request-title {
    color: #222222;
    font-size: 18px;
    margin-bottom: 15px;
}

.normal-input {
    border-radius: 0px;
    max-width: 100%;
    box-shadow: none;
}

.input-area-title {
    margin-bottom: 15px;
}

.old-request-lable {
    font-size: 14px;
 
}

.register-link {
    float: right;
    color: #666666;
    font-size: 14px;
    padding: 0;
}

#old-request-submit {
    height: 40px;
    background: #4090FF;    
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
 
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-request-modal {
    width: 840px;
    height: 731px;
}

.modal-header {
    margin: 15px;
    margin-bottom: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

.modal-header .modal-title {
    font-size: 24px;
}

.modal-header .modal-descripte {
    font-size: 12px;
    margin-top: 3px;
    color: #666666;
}

.modal-content {
    border-radius: 0px;
    padding: 20px;
}

.modal-footer {
    border-top: 0;
    padding-bottom: 30px;
}

.new-request-submit {
    width: 50%;
    margin: auto;
    margin-top: 24px;
}

#requestConfirmModal .modal-body {
    background: #EDF8FF;
    margin: 0px 15px;
} 

#requestConfirmModal .container {
    width: 100%;
    padding: 0;
}

#requestConfirmModal .row {
    padding: 8px 5px;
}

#requestConfirmModal .row .col-md-4{
    color: #666666;
    font-size: 12px;
}

#requestConfirmModal .row .col-md-8{
    font-size: 14px;
    max-width: 100%;
    max-lines: 3;
    color: #222222;
}


.sparate-area {
    padding-top: 25px;
}

.password-tips {
    width: 100%;
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin: 20px 0;
}

.password {
    width: 50%;
    margin-top: 0 ;
    margin-bottom: 15px;
}

.set-password {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.email-tips-big {
    text-align: center;
    color: #222222;
    font-size: 18px;
    margin-top: 40px;
}

.email-tips-small {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 30px;
}

.back-button {
    width: 40%;
}

.confirm-button {
    width: 40%;
    margin-left: 15px;
}

.register-button {
    width: 50%;
    margin: auto;
    margin-top: 24px;
}

.center-layout {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-modal {
    width: 440px;
    height: 380px;
}

.login-title {
    font-size: 24px;
    color: #222222;
    line-height: 26px;
    margin-top: 20px;
    margin-left: 20px;
}

.login-line {
    width: 360px;   
    height: 2px;
    border: 1px solid #DEDEDE;
    margin: 0 auto;
    margin-top: 18.5px;
}

.login-hi {
    font-size: 14px;
    color: #666666;
    margin-top: 31.5px;
    margin-left: 20px;
    margin-bottom: 17px;
}

.login-request {
    width: 360px;
    height: 90%;
    margin-left: 20px;
    padding-bottom: 0;
}

.login-btn {
    margin-top: 32px;
    margin-bottom: 16px;
}