html, body{
    margin:0;
}

.record-audio-holder .record-audio-start{
    display:none;
}
.record-audio-holder .record-audio-start.active{
    display:block;
}
.record-audio-holder .record-audio-stop{
    display:none;
}
.record-audio-holder .record-audio-stop.active{
    display:block;
}

/* Header */
header{
    width:100%;
    height:60px;
    min-height: 60px;
    background-color:#f8f9fa;
    display:flex;
    justify-content:center;
    z-index:20;
}
header .top-bar{
    height:100%;
    width:100%;
    display:flex;
    align-items:center;
}
header .page-name{
    flex-basis:0;
    flex-grow:1;
    text-align:left;
    margin-left:50px;
    font-size:20px;
    font-weight:600;
}
header .global-menu i{
    margin-right:20px;
    font-size:30px;
}
header .global-menu:hover{
    cursor:pointer;
}
.global-menu .dropdown-global-menu{
    display:none;
    position:absolute;
    right:0;
    margin-right:10px;
    background-color:#adadad;
    padding:10px 20px;
}
.global-menu .dropdown-global-menu .dropdown-global-menu-item{
    text-decoration:none;
    color:#000;
}
.global-menu:hover .dropdown-global-menu, .global-menu .dropdown-global-menu:hover{
    display:block;
}

/* Index Page */

.panel-page{
    display:flex;  
    width:100%;
    height:100%;
}
.panel-page section{
    flex-grow:1;
    flex-basis:0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.panel-page nav{
    background-color:#434343;
    width:250px;
    height:100vh;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.panel-page nav > div{
    display:flex;
    height:100%;
    flex-direction:column;
    justify-content: space-between;
}
.panel-page nav .menu .profile{
    padding-top:10px;
    padding-bottom:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
    min-width: 50px;
    overflow: hidden;
}
.panel-page nav .menu .profile .photo{
    height:50px;
    width:50px;
    min-width: 50px;
    border-radius: 200px;
}
.panel-page nav .menu .profile .info{
    display:flex;
    flex-direction:column;
    color:#fff;
    overflow: hidden;
}
.panel-page nav .menu .profile .info .name{
    padding-left: 10px;
}
.panel-page nav .menu .profile .info .role{
    padding-left: 10px;
}
.panel-page nav .menu-button{
    color:#fff;
    font-size:20px;
    font-weight:500;
    margin-bottom:10px;
    height: 25px;
}
.panel-page nav .menu-button.active{
    background-color: #fff;
    position: relative;
}
.panel-page nav .menu-button.active:before {
    position: absolute;
    top: -10px;
    height: 10px;
    width: 100%;
    content: ' ';
    background-color: #fff;
}
.panel-page nav .menu-button.active:after {
    position: absolute;
    bottom: -10px;
    height: 10px;
    width: 100%;
    content: ' ';
    background-color: #fff;
}
.panel-page nav .menu-button label{
    cursor:pointer;
    width:100%;
    display:flex;
    height: 25px;
}
.panel-page nav .menu-button label i{
    color:#fff;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 25px;
}
.panel-page nav .menu-button.active label i{
    color:#000;
}
.panel-page nav .menu-button.active label:before {
    content: ' ';
    background-color: #434343;
    width: 100%;
    height: 10px;
    top: -10px;
    position: absolute;
    left: 0;
    border-bottom-right-radius: 20px;
    z-index: 5;
}
.panel-page nav .menu-button.active label:after {
    content: ' ';
    background-color: #434343;
    width: 100%;
    height: 10px;
    bottom: -10px;
    position: absolute;
    left: 0;
    border-top-right-radius: 20px;
    z-index: 5;
}
.panel-page .sidebar-menu .menu-button label span{
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex:1;
}
.panel-page .sidebar-menu[data-open="false"] .menu-button:not(.active):hover label span{
    position: absolute;
    left: 49px;
    color: #fff;
    background-color: #434343;
    padding: 5px;
    transform: translateY(-5px);
    z-index: 100;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.panel-page nav .menu-button a{
    color:#fff;
    text-decoration:none;
}
.panel-page nav .menu-button.active a{
    color:#000;
}
.panel-page nav hr{
    margin-top:30px;
    margin-bottom:30px;
}
.panel-page nav .footer{
    width:100%;
}
.panel-page nav .footer .advert{
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    font-weight:500;
    padding-bottom: 10px;
}
.panel-page nav .footer .menu-control{
    display:flex;
    height:50px;
    cursor: pointer;
    background-color: #9e9e9e;
}
.panel-page nav .footer .menu-control .menu-control-button{
    display:flex;
    align-items: center;
    justify-content: center;
    width:49px;
    min-width: 49px;
    height:50px;
}
.panel-page nav .footer .menu-control .menu-control-title{
    display:flex;
    align-items: center;
    justify-content: center;
    flex:1;
    font-size:25px;
    white-space: nowrap;
}
.panel-page main{
    height: 100%;
    padding: 0 20px;
    overflow-y: auto;
}
.modal-box{
    width:100vw;
    height:100vh;
    position:absolute;
    display:none;
    align-items:center;
    justify-content:center;
    background-color:#00000050;
    opacity:0;
    z-index: 200;
}
.modal-box .modal-content{
    background-color:#fff;
    width: 500px;
    border-radius:25px;
}
.modal-box .header{
    font-size:30px;
    padding: 20px 20px 10px 20px;
    color:#333333;
}
.modal-box .body{
    font-size:20px;
    padding: 20px;
    border-bottom: 1px solid #999999;
    color:#333333;
}
.modal-box .footer{
    font-size:20px;
    padding: 20px;
    display:flex;
    justify-content: flex-end;
}
.modal-button{
    border-radius:5px;
    margin:5px;
    padding:10px 20px;
    cursor:pointer;
    color:#292929;
    font-weight:500;
}
.silver-button{
    background-color:#d1d1d1;
}
.red-button{
    background-color:#ff4747;
    color:#fff;
}
.blue-button{
    background-color:#3456eb;
    color:#fff;
}







.group-table{
    margin-top:50px;
    width:100%;
    margin-bottom: 20px;
}
.group-table .group-title .group-control{
    position:relative;
}
.group-table .group-title .group-control .group-control-dropdown{
    display:none;
    position:absolute;
    left:0;
    top:20px;
    z-index:5;
    padding-top:15px;
}
.group-table .group-title .group-control .group-control-dropdown .group-control-dropdown-content{
    display:block;
    height:auto;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    z-index:5;
    overflow: hidden;
}
.group-table .group-title .group-control:hover .group-control-dropdown, .group-table .group-title .group-control .group-control-dropdown:hover{
    display:block;
}
.group-table .group-title .group-control .group-control-dropdown .group-control-dropdown-item:hover{
    cursor:pointer;
    background-color:#F8F8F8;
}
.group-table .group-title .group-control .group-control-dropdown .group-control-dropdown-item{
    padding:0 5px;
}
.group-table .group-title{
    display:flex;
    height:50px;
}
.group-table .group-title div{
    height:50px;
    display:flex;
    align-items:center;
}
.group-table .group-title > div:not(:nth-child(2)){
    justify-content:center;
}
.group-table .group-title .title{
    margin-left:10px;
    display:flex;
    flex-basis:0;
    flex-grow:1;
}
.group-table .group-title .title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.group-table .group-title .title input:hover{
    border:1px dashed #757575;
}
.group-table .group-title .title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.group-table .summary{
    margin-left:30px;
    height:50px;
    display:flex;
}
.group-table .summary .total{
    flex-basis:0;
    flex-grow:1;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}
.group-table .summary .currency{
    margin-left:5px;
    margin-right:5px;
    align-items: center;
    display: flex;
}
.group-table .summary .end-line{
    width:10px;
    background-color:#ababab;
}








/* Dashboard */

.content-dashboard{
    padding:30px;
}
.widgets-two{
    margin-bottom:50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
}
.widgets-three{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
}
.widget-box{
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #000;
    border-radius: 20px;
    margin: 0 auto;
}
.widgets-two .widget-box{
    max-width: 400px;
}
.widgets-three .widget-box{
    max-width:300px;
}
.widget-box .content{
    padding:20px;
    text-align: center;
    position: relative;
}
.widget-box .content .settings{
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}
.widget-box .content .number{
    font-size: 50px;
}
.widget-box .content .title{
    font-size: 20px;
}
.widget-box .content .description{
    margin-top:20px;
}


.widget-turnover .content .number{
    font-size: 40px;
}
.widget-turnover .content .description{
    margin-top:0;
}
















/* Projects Page */

.group-table .group-title .contact{
    width:100px;
    text-align:center;
}

.group-table .group-title .status{
    width:100px;
    text-align:center;
}
.group-table .group-title .deadline{
    width:150px;
    text-align:center;
}
.group-table .group-title .price{
    width:100px;
    text-align:center;
}
.group-table .group-title .end-line{
    width:10px;
}
.auto-add-conditions-table .auto-add-conditions-table-head{
    display:flex;
    background-color:#F4F4F4;
    padding:5px;
}
.auto-add-conditions-table .auto-add-conditions-table-footer{
    display:flex;
}
.auto-add-conditions-table .condition{
    display:flex;
    padding:5px;
}
.auto-add-conditions-table .auto-add-condition-table-remove{
    width:30px;
    text-align:center;
    cursor:pointer;
}
.auto-add-conditions-table .auto-add-condition-table-variable{
    flex:1;
    text-align:center;
}
.auto-add-conditions-table .auto-add-condition-table-operator{
    flex:1;
    text-align:center;
}
.auto-add-conditions-table .auto-add-condition-table-value{
    flex:1;
    text-align:center;
}
.add-condition{
    cursor:pointer;
    margin-top:20px;
    background-color:#F4F4F4;
    border-radius:20px;
    padding:10px;
}
.project{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
    position:relative;
}
.project:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.project > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.project div.is-message-to-display {
    height: 10px;
    width: 10px;
    background-color: #eb0606;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 200px;
}
.project .delete-project{
    width:40px;
    justify-content:center;
}
.project .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.project .title{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
    min-width: 200px;
}
.project .title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.project .title input:hover{
    border:1px dashed #757575;
}
.project .title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.project .contact{
    display:flex;
    width:100px;
    justify-content:center;
    position:relative;
}
.project .contact img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.project .contact .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    overflow: hidden;
    z-index:5;
}
.project .contact .contact-dropdown .project-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.project .contact .contact-dropdown .possible-contact{
    display:flex;
    align-items:center;
    padding: 5px 10px;
}
.project .contact .contact-dropdown .possible-contact:hover{
    background-color:#e3e1e1;
}
.project .contact .contact-dropdown .possible-contact div{
    margin-left:10px;
}
.project .status{
    width:100px;
    justify-content:center;
    position:relative;
}
.project .status .status-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.project .status .status-dropdown .project-set-status:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.project .status .status-dropdown .project-add-status{
    display:flex;
}
.project .deadline{
    width:150px;
    justify-content:center;
}

.project .deadline input{
    width:90%;
    height:30px;
    font-size:15px;
    border:none;
    background-color:inherit;
}
.project .deadline input:hover{
    border:1px dashed #757575;
    cursor:text;
}
.project .deadline input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.project .price{
    width:100px;
    display:flex;
    position:relative;
}
.project .price input{
    border:none;
    background-color:inherit;
    width: 50%;
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
}
.project .price input:hover{
    border:1px dashed #757575;
}
.project .price input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.project .price .price-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.project .end-line{
    width:10px;
    background-color:#ababab;
}
.add-project{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.add-project .start-line{
    width:10px;
    background-color:#0039f5;
}
.add-project .title{
    flex-basis:0;
    flex-grow:1;
}
.add-project input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.add-project input:hover{
    border:1px solid #000;
    cursor:text;
}
.add-project .add-project-button{
    background-color:#809dff;
    width:0;
    opacity:0;
    transition: all 0.5s;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
}
.add-project .add-project-button:hover{
    cursor:pointer;
}
.add-project .end-line{
    width:10px;
    background-color:#ababab;
}
.project-info{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index:200;
}
.project-info .project-close{
    cursor: pointer;
    width: 20px;
}
.project-info .project-content{
    margin:20px;
    height:95%;
}
.project-info .project-header{
    margin-top:40px;
    display:flex;
    height:40px;
}
.project-info .project-header div{
    display:flex;
    align-items:center;
}
.project-info .project-title{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
}
.project-info .project-title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.project-info .project-title input:read-write:hover{
    border:1px dashed #757575;
}
.project-info .project-title input:read-write:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.project-info .project-title input:read-only:focus{
    background-color:#fff;
    border:none;
    outline: none;
}
.project-info .project-contacts{
    width:40px;
    margin-right:10px;
    position:relative;
    cursor:pointer;
}
.project-info .project-contacts img {
    border-radius: 500px;
    width: 40px;
    height: 40px;
}
.project-info .project-contacts .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.project-info .project-contacts .contact-dropdown .project-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.project-info .project-contacts .contact-dropdown .possible-contact{
    display:flex;
    align-items:center;
}
.project-info .project-contacts .contact-dropdown .possible-contact div{
    margin-left:10px;
}
.project-info .project-control{
    width:35px;
    border-left:1px solid #ededed;
    justify-content:flex-end;
    cursor:pointer;
    position:relative;
}
.project-info .project-control i{
    font-size: 30px;
}
.project-info .project-control .global-menu i{
    margin-right:20px;
    font-size:30px;
}
.project-info .project-control .global-menu:hover{
    cursor:pointer;
}
.project-info .project-control .dropdown-project-menu{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    z-index:5;
}
.project-info .project-control .dropdown-project-menu .dropdown-project-menu-content{
    display:block;
    height:auto;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    z-index:5;
    overflow: hidden;
}
.project-info .project-control .dropdown-project-menu .dropdown-project-menu-item{
    text-decoration:none;
    color:#000;
    padding: 10px 20px;
}
.project-info .project-control .dropdown-project-menu .dropdown-project-menu-item:hover{
    cursor:pointer;
    background-color:#F8F8F8;
}
.project-info .project-control:hover .dropdown-project-menu, .project-info .project-control .dropdown-project-menu:hover{
    display:block;
}
.project-info .project-body{
    margin-top:40px;
    height:83%;
}
.project-info .project-body .tab {
	overflow: hidden;
	display:flex;
}
.project-info .project-body .tab .filler{
    flex-grow:1;
    flex-basis:0;
}
.project-info .project-body .tab div {
	float: left;
    padding: 0 5px 5px 5px;
	font-size: 20px;
    text-align: center;
    color:#bdbdbd;
    border-bottom: 1px solid #d6d6d6;
}
.project-info .project-body .tab div:hover:not(.filler) {
    border-bottom: 2px solid #949494;
    cursor: pointer;
}
.project-info .project-body .tab .active {
    border-bottom: 2px solid #0932e6;
    color:#404040;
}
.project-info .project-body .tab-icon{
    font-size: 50px;
    color:#171EE6;
    margin-bottom:10px;
}
.project-info .project-body .tabcontent {
	display: none;
}
.project-info .project-body .add-message{
    width:100%;
    margin-top:30px;
}
.project-info .project-body .add-message-input{
    font-size:15px;
    min-width:95%;
    max-width:95%;
    border-radius:10px;
    padding-left:5px;
    padding-right:5px;
}
.project-info .project-body .add-message .button{
    background-color:#3456eb;
    border-radius:10px;
    padding:10px 20px;
    width:fit-content;
    color:#fff;
    cursor:pointer;
}
.project-info .project-body .add-message .add-message-controls{
    display: flex;
}
.project-info .project-body .add-message .add-message-controls .record-audio-holder{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.project-info .project-body .add-message .add-message-controls .upload-file-holder{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.project-info .project-body .add-message .add-message-controls .upload-file-holder input{
    display:none;
}
.project-info .project-body .add-message .add-message-controls .upload-file-holder i{
    cursor:pointer;
}
.project-info .project-body .messages-container{
    margin-top:50px;
    width:100%;
    overflow-y: scroll;
    height: 50vh;   
    display:flex;
    flex-direction:column;
}
.project-info .project-body .messages{
    width:100%;
}
.project-info .project-body .message{
    border: 1px solid #b0b0b0;
    border-radius:10px;
    width:90%;
    margin-top:10px;
    margin-bottom:10px;
}
.project-info .project-body .message .header{
    height:30px;
    width:100%;
    display:flex;
    justify-content:space-between;
}
.project-info .project-body .message .header .person{
    display:flex;
    align-items:center;
    margin-top:10px;
    margin-left:10px;
}
.project-info .project-body .message .header .person img{
    height:30px;
    width:30px;
    border-radius: 200px;
}
.project-info .project-body .message .header .person span{
    margin-left:5px;
}
.project-info .project-body .message .header .when{
    margin-top:10px;
    margin-right:10px;
    display:flex;
}
.project-info .project-body .message .header .when .delete-message{
    margin-left:5px;
    cursor:pointer;
}
.project-info .project-body .message .body{
    margin: 20px 10px 10px 10px;
    font-size: 16px;
}
.project-info .project-body .message .body img, .project-info .project-body .message .body video{
    width:100%;
}
.project-info .project-body .message .body .file{
    cursor: url(../img/cursor_download.png), auto;
}
.project-info .project-body .message .body .message-quote{
    font-size: 14px;
    margin-left: 10px;
    padding-left: 5px;
    color:#7f7f7f;
    border-left: 1px solid #3b3b3b;
    margin-bottom: 10px;
}
.project-info .project-body .message .footer{
    display:flex;
    height:30px;
    width:100%;
}
.project-info .project-body .message .footer div{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
    justify-content:center;
    height:30px;
}
.project-info .project-body .message .footer .reaction{
    border-top:1px solid #b0b0b0;
    border-bottom-left-radius:10px;
    position: relative;
    cursor: pointer;
}
.project-info .project-body .message .footer .reaction .reactions-dropdown{
    position: absolute;
    bottom: 30px;
    left: 0;
    display: none;
    width: 100%;
    background-color:#fff;
}
.project-info .project-body .message .footer .reaction[data-reaction="1"] .current-reaction{
    color: #646aff;
}
.project-info .project-body .message .footer .reaction[data-reaction="2"] .current-reaction{
    color: #b90808;
}
.project-info .project-body .message .footer .reaction[data-reaction="3"] .current-reaction{
    color: #cad84c;
}
.project-info .project-body .message .footer .reaction-to-set:hover {
    background-color: #646aff;
}
.project-info .project-body .message .footer .reaction:hover .reactions-dropdown{
    display: flex;
}
.project-info .project-body .message .footer .reaction .reactions-dropdown .reaction-item{
    cursor:pointer;
}
.project-info .project-body .message .footer .reaction .reactions-dropdown .reaction-like:hover{
    color: #646aff;
}
.project-info .project-body .message .footer .reaction .reactions-dropdown .reaction-heart:hover{
    color: #b90808;
}
.project-info .project-body .message .footer .reaction .reactions-dropdown .reaction-laugh:hover{
    color: #cad84c;
}
.project-info .project-body .message .footer .quote{
    border-top:1px solid #b0b0b0;
    border-left:1px solid #b0b0b0;
    border-bottom-right-radius:10px;
}
.project-info .project-body .message .footer .quote:hover{
    cursor:pointer;
    background-color:#cfcfcf;
}
.project-info .project-body #project-tab-description{
    height:100%;
}
.project-info #project-tab-description .description{
    margin:10px;
    height:100%;
}
.project-info #project-tab-description .description #project-info-description{
    display:flex;
    flex-direction:column;
    height:80%;
}
.project-info #project-tab-description .description #project-info-description .client-message{
    flex:1;
    overflow-y: scroll;
}
.project-info #project-tab-description .description #project-info-description .client-quotation{
    flex:1;
    margin-top: 30px;
}
.project-info #project-tab-description .description #project-info-description .client-quotation table th{
    text-align:left;
}
.project-info .project-body .messages-container .load-more-messages{
    display:flex;
    align-items:center;
    justify-content:center;
}
.project-info .project-body .messages-container .load-more-messages div{
    cursor:pointer;
    padding:5px 10px;
    background-color:#3456eb;
    border-radius:10px;
    color:#fff;
}
.project-info .project-body .information-container{
    width:100%;
}
.project-info .project-body .informations{
    margin-top:20px;
    width:100%;
    border:1px solid #cfcfcf;
}
.project-info .project-body .information{
    width:100%;
    display:flex;
}
.project-info .project-body .information:not(:first-child){
    border-top:1px solid #adadad;
}
.project-info .project-body .information .key{
    width:25%;
    border-right:1px solid #cfcfcf;
    padding:5px;
    display:flex;
    align-items:center;
    background-color:#cfcfcf;
}
.project-info .project-body .information .value{
    width:75%;
    padding:5px;
    display:flex;
    align-items:center;
    word-break: break-all;
}
.project-info .project-body .information .value a{
    color:#000;   
}
.project-info .project-body .add-information{
    width:100%;
    margin-top:20px;
}
.project-info .project-body .add-information .table-body{
    width:100%;
    display:flex;
}
.project-info .project-body .add-information .table-body div{
    flex-basis:0;
    flex-grow:1;
}
.project-info .project-body .add-information .table-body div input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.project-info .project-body .add-information .table-body div input:hover{
    border:1px dashed #757575;
}
.project-info .project-body .add-information .table-body div input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.project-info .project-body .add-information .table-footer {
    width:100%;
    display:flex;
    margin-top:10px;
}
.project-info .project-body .add-information .table-footer .button{
    background-color:#3456eb;
    border-radius:10px;
    padding:10px 20px;
    width:fit-content;
    color:#fff;
    cursor:pointer;
}
.project-info .project-body .project-tab-bugs{
    height: 100%;
}
.project-info .project-body .project-tab-bugs .bugs-container{
    overflow-y: scroll;
    height: 100%;
}
.project-info .project-body .bugs-container .bugs{
    padding: 10px;
}
.project-info .project-body .bugs .bug{
    box-shadow: 0 0 4px #000;
    border-radius: 20px;
    padding:10px;
    display:flex;
    margin-top:10px;
}
.project-info .project-body .bugs .bug .left-col{
    width:50px;
    display:flex;
    justify-content:center;
    align-items: center;
    font-size: 50px;
    cursor: pointer;
}
.project-info .project-body .bugs .bug .right-col{
    flex:1;
    padding-left:10px;
}
.project-info .project-body .bugs .bug .right-col .bottom-row{
    display:flex;
    padding-top: 10px;
}
.project-info .project-body .bugs .bug .right-col .bottom-row > div:not(:first-child){
    padding-left:20px;
}
.project-info .project-body .bugs .bug.critical-bug{
    background-color: #ff00004a;
}
.project-info .project-body .bugs .bug.important-bug{
    background-color: #ff410029;
}
.project-info .project-body .bugs .bug.normal-bug{
    background-color: #ffa00026;
}
.project-info .project-body .bugs .bug.low-bug{
    background-color: #fff;
}
.project-info .project-body .bugs .bug.done-bug{
    background-color: #09af1a52;
}
.project-info .project-body .bugs .bug-image, .project-info .project-body .bugs .bug-html{
    cursor: pointer;
    font-size: 30px;
}
.project-info .project-body .bugs .bug-image-window,.project-info .project-body .bugs .bug-html-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #000000e3;
    height: 100%;
}
.project-info .project-body .bugs .bug-image-window.active, .project-info .project-body .bugs .bug-html-window.active{
    display:flex;
}
.project-info .project-body .bugs .bug-image-window-close, .project-info .project-body .bugs .bug-html-window-close{
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    border-radius: 100px;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.project-info .project-body .bugs .bug-html-window-holder{
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}
.project-info .project-body .bugs .bug-html-window-holder-code{
    border-top: 1px solid #000;
    box-shadow: 0px -2px 5px 0px #000;
    padding: 10px;
    border-radius: 10px;
    margin-top: 40px;
}
.project-info .project-body .bugs-container .load-more-bugs{
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-info .project-body .bugs-container .load-more-bugs > div {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #3456eb;
    border-radius: 10px;
    color: #fff;
}

/* Turnover */
.panel-page .content-turnover{
    height: 100%;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.panel-page .content-turnover .summary{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color:#fff;
    height: 60px;
}
.panel-page .content-turnover .summary .summary-content{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    font-size: 20px;
    height: 60px;
}
.panel-page .content-turnover .summary .summary-content .summary-turnover{
    border-right: 1px solid #a7a7a7;
    padding-right:20px;
}
.panel-page .content-turnover .summary .summary-content .summary-turnover .summary-turnover-total{
    display:flex;
}
.panel-page .content-turnover .summary .summary-content .summary-turnover .summary-turnover-total-money{
    margin-left: 5px;
}
.panel-page .content-turnover .summary .summary-content .summary-turnover .summary-turnover-year-money{
    display:flex;
    justify-content: center;
    font-size: 16px;
}
.panel-page .content-turnover .summary .summary-content .summary-income{
    padding-left:20px;
    padding-right:20px;
    border-right: 1px solid #a7a7a7;
}
.panel-page .content-turnover .summary .summary-content .summary-income .summary-income-total{
    display:flex;
}
.panel-page .content-turnover .summary .summary-content .summary-income .summary-income-total-money{
    margin-left: 5px;
}
.panel-page .content-turnover .summary .summary-content .summary-income .summary-income-year-money{
    display:flex;
    justify-content: center;
    font-size: 16px;
}
.panel-page .content-turnover .summary .summary-content .summary-expenses{
    padding-left:20px;
}
.panel-page .content-turnover .summary .summary-content .summary-expenses .summary-expenses-total{
    display:flex;
}
.panel-page .content-turnover .summary .summary-content .summary-expenses .summary-expenses-total-money{
    margin-left: 5px;
}
.panel-page .content-turnover .summary .summary-content .summary-expenses .summary-expenses-year-money{
    display:flex;
    justify-content: center;
    font-size: 16px;
}
.panel-page .content-turnover .statistics{
    height: 400px;
    padding-bottom: 60px;
}
.panel-page .content-turnover .statistics .statistics-content .statistics-chart-menu{
    display:flex;
    margin-top:20px;
}
.panel-page .content-turnover .statistics .statistics-content .statistics-chart-menu .statistics-chart-menu-item{
    width:50%;
    text-align:center;
}
.panel-page .content-turnover .turnovers{
    overflow-y: scroll;
    overflow-x: hidden;
    flex: 1;
}
.turnover{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
}
.turnover-income{
    background-color: #0cf1181a;
}
.turnover-expenses{
    background-color: #e916161a;
}
.turnover-neutral{
    background-color:#fafafa;
}
.turnover:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.turnover > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.turnover .delete-turnover{
    width:40px;
    justify-content:center;
}
.turnover .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.turnover .description{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
}
.turnover .description input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.turnover .description input:hover{
    border:1px dashed #757575;
}
.turnover .description input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.turnover .contact{
    display:flex;
    width:100px;
    justify-content:center;
    position:relative;
}
.turnover .contact img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.turnover .contact .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.turnover .contact .contact-dropdown .turnover-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.turnover .contact .contact-dropdown .additional-contact{
    display:flex;
    align-items:center;
}
.turnover .contact .contact-dropdown .additional-contact div{
    margin-left:10px;
}
.turnover .date{
    width:150px;
    justify-content:center;
}

.turnover .date input{
    width:90%;
    height:30px;
    font-size:15px;
    border:none;
    background-color:inherit;
}
.turnover .date input:hover{
    border:1px dashed #757575;
    cursor:text;
}
.turnover .date input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.turnover .money{
    width:100px;
    display:flex;
    position:relative;
}
.turnover .money input{
    border:none;
    background-color:inherit;
    width: 50%;
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
}
.turnover .money input:hover{
    border:1px dashed #757575;
}
.turnover .money input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.turnover .money .money-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.turnover .end-line{
    width:10px;
    background-color:#ababab;
}
.add-turnover{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:10px;
    margin-top:10px;
}
.add-turnover .start-line{
    width:10px;
    background-color:#0039f5;
}
.add-turnover .description{
    flex-basis:0;
    flex-grow:1;
    position: relative;
}
.add-turnover input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.add-turnover .add-turnover-money-input{
    width:100px;
    padding-left: 20px;
}
.add-turnover input:hover{
    border:1px solid #000;
    cursor:text;
}
.add-turnover .add-turnover-button{
    background-color:#809dff;
    width:0;
    opacity:0;
    transition: all 0.5s;
    display:flex;
    align-items:center;
    justify-content:center;
}
.add-turnover .add-turnover-button:hover{
    cursor:pointer;
}
.add-turnover .end-line{
    width:10px;
    background-color:#ababab;
}
.add-turnover .autocomplete-list {
    font: 16px Arial;
}
.add-turnover .autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}
.add-turnover .autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.add-turnover .autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.add-turnover .autocomplete-active {
  background-color: DodgerBlue;
  color: #ffffff;
}
/* END - Turnover */


/* Invoices Page */
.auto-add-condition{
    display:flex;
    margin-top:30px;
}
.add-condition{
    width:fit-content;
}















.invoices-group .group-title{
    display:flex;
    height:50px;
}
.invoices-group .group-title div{
    height:50px;
    display:flex;
    align-items:center;
}
.invoices-group .group-title > div:not(:nth-child(2)){
    justify-content:center;
}
.invoices-group .group-title .contact{
    width:100px;
    text-align:center;
}
.invoices-group .group-title .date{
    width:100px;
    text-align:center;
}
.invoices-group .group-title .total{
    width:100px;
    text-align:center;
}
.invoices-group .group-title .status{
    width:100px;
    text-align:center;
}
.invoices-group .group-title .last-activity{
    width:100px;
    text-align:center;
}
.invoices-group .group-title .end-line{
    width:10px;
}
.invoice{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
}
.invoice:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.invoice > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.invoice .delete-invoice{
    width:40px;
    justify-content:center;
}
.invoice .show{
    width:40px;
    justify-content:center;
    position: relative;
}
.invoice .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.invoice .title{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
}
.invoice .title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.invoice .title input:hover{
    border:1px dashed #757575;
}
.invoice .title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice .contact{
    display:flex;
    width:100px;
    justify-content:center;
    position:relative;
}
.invoice .contact img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.invoice .contact .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.invoice .contact .contact-dropdown .invoice-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.invoice .contact .contact-dropdown .additional-contact{
    display:flex;
    align-items:center;
}
.invoice .contact .contact-dropdown .additional-contact div{
    margin-left:10px;
}
.invoice .date{
    width:100px;
    justify-content:center;
    position:relative;
    text-align: center;
}
.invoice .total{
    width:100px;
    justify-content:center;
    position:relative;
}
.invoice .status{
    width:100px;
    justify-content:center;
    position:relative;
}
.invoice .status .invoice-status{
    text-align:center;
}
.invoice .last-activity{
    width:100px;
    justify-content:center;
}

.invoice .end-line{
    width:10px;
    background-color:#ababab;
}
.add-invoice{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.add-invoice .start-line{
    width:10px;
    background-color:#0039f5;
}
.add-invoice .title{
    flex-basis:0;
    flex-grow:1;
}
.add-invoice input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.add-invoice input:hover{
    border:1px solid #000;
    cursor:text;
}
.add-invoice .add-invoice-holder{
    flex: 1;
}
.add-invoice .add-invoice-button{
    background-color:#E3C321;
    width: 150px;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    cursor:pointer;
    border-radius: 10px;
}
.add-invoice .end-line{
    width:10px;
    background-color:#ababab;
}
.invoice-edit{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index: 500;
}
.invoice-edit .invoice-close{
    cursor: pointer;
    width: 20px;
}
.invoice-edit .invoice-content{
    margin:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95%;
}
.invoice-edit .invoice-preview{
    width:100%;
    position: relative;
    flex: 1;
}
.invoice-edit .invoice-preview .container{
    width:100%;
    padding-bottom:20px;
    border-bottom:2px solid #000;
}
.invoice-edit .invoice-preview .invoice-header{
    font-size:12px;
    font-weight:700;
    color: #444444;
    line-height: 15px;
}
.invoice-edit .invoice-preview .invoice-paragraph{
    font-size: 14px;
    color: #444444;
    line-height: 16px;
}
.invoice-edit .invoice-preview .invoice-info .invoice-paragraph{
    display:flex;
    justify-content:flex-end;
}
.invoice-edit .invoice-preview .invoice-logo{
    width:25%;
    text-align:center;
}
.invoice-edit .invoice-preview td.invoice-logo img {
	max-height: 3cm;
	width: auto;
}
.invoice-edit .invoice-preview .invoice-shop-info{
    width:45%;
    padding-left:50px;
}
.invoice-edit .invoice-preview .invoice-shop-info div{
    margin-top:20px;
}
.invoice-edit .invoice-preview .currency{
    cursor:pointer;
    position:relative;
}
.invoice-edit .invoice-preview .currency .currency-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:20px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.invoice-edit .invoice-preview .invoice-info{
    width:30%;
    text-align:right;
}
.invoice-edit .invoice-preview .invoice-info .invoice_number{
    width: 90px;
    border: none;
    text-align: right;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-info .invoice_number:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-info .invoice_number:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-info .invoice_date{
    width: 90px;
    border: none;
    text-align: right;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-info .invoice_date:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-info .invoice_date:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-info .invoice_due_date{
    width: 90px;
    border: none;
    text-align: right;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-info .invoice_due_date:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-info .invoice_due_date:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-info .invoice_total{
    width: 90px;
    border: none;
    text-align: right;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-info .invoice_total:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-info .invoice_total:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-info > div:not(:first-child){
    margin-top:20px;
}
.invoice-edit .invoice-preview .invoice-contact{
    cursor:pointer;
    position:relative;
}
.invoice-edit .invoice-preview .invoice-contact .invoice-contact-dropdown{
    display:none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(120%);
    border-radius: 20px;
    -webkit-box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 41%);
    box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 41%);
    padding: 10px;
    background-color: #fff;
}
.invoice-edit .invoice-preview .invoice-contact .invoice-contact-dropdown .contact{
    display:flex;
    align-items: center;
}
.invoice-edit .invoice-preview .invoice-contact .invoice-contact-dropdown .contact img{
    width: 50px;
    height: 50px;
    border-radius:200px;
}
.invoice-edit .invoice-preview .invoice-details{
    width:100%;
    margin-top:30px; 
    border-collapse: collapse; 
}
.invoice-edit .invoice-preview .invoice-details-product{
    width:60%;
    text-align:left;
}
.invoice-edit .invoice-preview .invoice-details-product .invoice-details-product-content{
    display:flex;
}
.invoice-edit .invoice-preview .invoice-details-product .invoice-details-product-content .add-new-invoice-item{
    cursor:pointer;
    margin-left:5px;
}
.invoice-edit .invoice-preview .invoice-details-rate{
    width:15%;
    text-align:left;
}
.invoice-edit .invoice-preview .invoice-details-quantity{
    width:10%;
    text-align:center;
}
.invoice-edit .invoice-preview .invoice-details-price{
    width:15%;
    text-align:right;
}
.invoice-edit .invoice-preview .invoice-details thead th{
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    border-collapse: collapse;
    padding-top:10px;
    padding-bottom:10px;
}
.invoice-edit .invoice-preview .invoice-details-item td{
    border-bottom:1px solid #000;
    padding-top:10px;
    padding-bottom:10px;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_description{
    width: 90%;
    text-align: left;
    border: none;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_description:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_description:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_rate{
    width: 100%;
    text-align: left;
    border: none;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_rate:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_rate:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_quantity{
    width: 50px;
    text-align: center;
    border: none;
    color: #000;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_quantity:hover{
    border:1px dashed #757575;
}
.invoice-edit .invoice-preview .invoice-details-item .invoice_data_quantity:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.invoice-edit .invoice-preview .invoice-items-total tfoot tr{
    text-align:left;
    border-collapse: collapse;
}
.invoice-edit .invoice-preview .invoice-items-total tfoot th,.invoice-items-total tfoot td{
    padding-top:10px;
    border-collapse: collapse;
}
.invoice-edit .invoice-preview .description{
    width:70%;
}
.invoice-edit .invoice-preview .payment-info{
    margin-top:-20px;
}
.invoice-edit .invoice-action-button-holder{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
.invoice-edit .invoice-action-button{
    width: 50px;
    padding: 5px 20px;
    background-color: #E3C321;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}
.invoice-edit  #invoice-action-button-finish{
    display:none;
}
.invoice-show{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index: 500;
}
.invoice-show .invoice-close{
    cursor: pointer;
    width: 20px;
}
.invoice-show .invoice-content{
    margin:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95%;
}
.invoice-show .invoice-preview-show{
    width:100%;
    position: relative;
    flex: 1;
}
.invoice-show .invoice-preview-show iframe{
    width:100%;
    height:100%;
}
.invoice-show .invoice-action-button-holder .invoice-action-button{
    width: 50px;
    padding: 5px 20px;
    background-color: #E3C321;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}
/* END - invoices page*/


/* Agrements Page */
.agrements-group{
    margin-top:50px;
    margin-left:30px;
    width:95%;
}
.agrements-group .group-agrements::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.auto-add-condition{
    display:flex;
    margin-top:30px;
}
.add-condition{
    width:fit-content;
}
.agrements-group .group-title{
    display:flex;
    height:50px;
}
.agrements-group .group-title div{
    height:50px;
    display:flex;
    align-items:center;
}
.agrements-group .group-title > div:not(:nth-child(2)){
    justify-content:center;
}
.agrements-group .group-title .contact{
    width:100px;
    text-align:center;
}
.agrements-group .group-title .date{
    width:100px;
    text-align:center;
}
.agrements-group .group-title .total{
    width:100px;
    text-align:center;
}
.agrements-group .group-title .status{
    width:100px;
    text-align:center;
}
.agrements-group .group-title .last-activity{
    width:100px;
    text-align:center;
}
.agrements-group .group-title .end-line{
    width:10px;
}
.agrement{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
}
.agrement:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.agrement > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.agrement .delete-agrement{
    width:40px;
    justify-content:center;
}
.agrement .show{
    width:40px;
    justify-content:center;
    position: relative;
}
.agrement .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.agrement .title{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
}
.agrement .title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.agrement .title input:hover{
    border:1px dashed #757575;
}
.agrement .title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.agrement .contact{
    display:flex;
    width:100px;
    justify-content:center;
    position:relative;
}
.agrement .contact img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.agrement .contact .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.agrement .contact .contact-dropdown .agrement-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.agrement .contact .contact-dropdown .additional-contact{
    display:flex;
    align-items:center;
}
.agrement .contact .contact-dropdown .additional-contact div{
    margin-left:10px;
}
.agrement .date{
    width:100px;
    justify-content:center;
    position:relative;
    text-align: center;
}
.agrement .total{
    width:100px;
    justify-content:center;
    position:relative;
}
.agrement .status{
    width:100px;
    justify-content:center;
    position:relative;
}
.agrement .status .agrement-status{
    text-align:center;
}
.agrement .last-activity{
    width:100px;
    justify-content:center;
}

.agrement .end-line{
    width:10px;
    background-color:#ababab;
}
.add-agrement{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.add-agrement .start-line{
    width:10px;
    background-color:#0039f5;
}
.add-agrement .title{
    flex-basis:0;
    flex-grow:1;
}
.add-agrement input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.add-agrement input:hover{
    border:1px solid #000;
    cursor:text;
}
.add-agrement .add-agrement-holder{
    flex: 1;
}
.add-agrement .add-agrement-button{
    background-color:#E3C321;
    width: 150px;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    cursor:pointer;
    border-radius: 10px;
}
.add-agrement .end-line{
    width:10px;
    background-color:#ababab;
}
.agrement-edit{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index: 500;
}
.agrement-edit .agrement-close{
    cursor: pointer;
    width: 20px;
}
.agrement-edit .agrement-content{
    margin:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95%;
}
.agrement-preview{
    width:100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.agrement-preview .agrement-title {
    display:flex;
    justify-content:center;
    margin-top:50px;
    margin-bottom:30px;
    font-size: 20px;
}
.agrement-preview .agrement-title .agrement-title-input{
    width: 90%;
    height: 30px;
    font-size: 20px;
    border: none;
    background-color: inherit;
    text-align:center;
}
.agrement-preview .agrement-title .agrement-title-input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.agrement-preview .agrement-contact-holder{
    display:flex;
    justify-content:center;
    text-align:center;
}
.agrement-preview .agrement-contact{
    cursor:pointer;
    position:relative;
}
.agrement-preview .agrement-contact img{
    width: 50px;
    height:50px;
    border-radius:200px;
}
.agrement-preview .agrement-contact .agrement-contact-dropdown{
    display:none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(120%);
    border-radius: 20px;
    -webkit-box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 41%);
    box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 41%);
    padding: 10px;
    background-color: #fff;
}
.agrement-preview .agrement-contact .agrement-contact-dropdown .contact{
    display:flex;
}
.agrement-preview .agrement-contact .agrement-contact-dropdown .contact img{
    width: 50px;
}
.agrement-preview .agrement-file{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.agrement-preview .agrement-file #agrement-preview-file-name{
    margin-top:30px;
    margin-bottom:10px;
}
.agrement-preview .agrement-file .file-preview{
    flex:0.95;
}
.agrement-preview .agrement-file .upload-box{
    background-color: #f0f2f3;
    padding: 15px;
    display:flex;
    flex-direction:column;
    margin-top:30px;
    margin-bottom: 30px;
}
.agrement-preview .agrement-file .upload-box .image{
    display:flex;
    flex-direction:column;
    align-items:center;
    align-items:center;
}
.agrement-preview .agrement-file .files{
    margin-top: 20px;
}
.agrement-preview .agrement-file .files .files-list{
	margin-top:10px;
	display:flex;
	flex-wrap:wrap;
}
.agrement-preview .agrement-file .files .files-list div{
	display:flex;
	flex-direction:column;
	align-items: center;
    margin-right: 20px;
}
.agrement-preview .agrement-file .files .files-list img{
	width:50px;
	height:50px;
}
.agrement-preview .agrement-file .upload-box .image .icon{
    color:#64bc46;
    font-size:30px;
}
.agrement-preview .agrement-file .upload-box .image .text{
    color:#64bc46;
    font-size:20px;
}
.agrement-preview .agrement-file .upload-box label{
    cursor:pointer;
    margin-top:20px;
}
.agrement-preview .agrement-file .upload-box .upload-input{
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    white-space: nowrap;
    width: 1px;
}
.agrement-preview .agrement-file .upload-box .info{
    margin-top:50px;
    font-size:14px;
}
.agrement-edit .agrement-action-button-holder{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
.agrement-edit .agrement-action-button{
    width: 50px;
    padding: 5px 20px;
    background-color: #E3C321;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}
.agrement-edit  #agrement-action-button-finish{
    display:none;
}
.agrement-show{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index: 500;
}
.agrement-show .agrement-close{
    cursor: pointer;
    width: 20px;
}
.agrement-show .agrement-content{
    margin:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95%;
}
.agrement-show .agrement-preview-show{
    width:100%;
    position: relative;
    flex: 1;
}
.agrement-show .agrement-action-button-holder .agrement-action-button{
    width: 50px;
    padding: 5px 20px;
    background-color: #E3C321;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}
.agrement-show .agrement-content .agrement-action-button-holder{
    display:flex;
    justify-content: space-between;
}
/* END - agrements page*/






/* Contacts Page */

.contacts-group .group-title .description{
    width:100px;
    text-align:center;
}
.contacts-group .group-title .email{
    width:100px;
    text-align:center;
}
.contacts-group .group-title .referrer{
    width:100px;
    text-align:center;
}
.contacts-group .group-title .current-task{
    width:200px;
    text-align:center;
}
.contacts-group .group-title .end-line{
    width:10px;
}
.contacts-group .contact{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
}
.contacts-group .contact:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.contacts-group .contact > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.contacts-group .contact .delete-contact{
    width:40px;
    justify-content:center;
}
.contacts-group .contact .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.contacts-group .contact .profile{
    display:flex;
    width:60px;
    justify-content:center;
    position:relative;
}

.contacts-group .contact div.is-message-to-display {
    height: 10px;
    width: 10px;
    background-color: #eb0606;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 200px;
}
.contacts-group .contact .profile img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.contacts-group .contact .title{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
}
.contacts-group .contact .title input, .contacts-group .contact .description input, .contacts-group .contact .email input, .contacts-group .contact .referrer input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.contacts-group .contact .title input:hover, .contacts-group .contact .description input:hover, .contacts-group .contact .email input:hover, .contacts-group .contact .referrer input:hover{
    border:1px dashed #757575;
}
.contacts-group .contact .title input:focus, .contacts-group .contact .description input:focus, .contacts-group .contact .email input:focus, .contacts-group .contact .referrer input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contacts-group .contact .description{
    width:100px;
    justify-content:center;
}
.contacts-group .contact .email{
    width:100px;
    justify-content:center;
}
.contacts-group .contact .email:hover{
    cursor:text;
}
.contacts-group .contact .referrer{
    width:100px;
    justify-content:center;
}
.contacts-group .contact .current-task{
    width:200px;
    font-size:20px;
    justify-content: center;
}
.contacts-group .contact .end-line{
    width:10px;
    background-color:#ababab;
}
.contacts-group .add-contact{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.contacts-group .add-contact .start-line{
    width:10px;
    background-color:#0039f5;
}
.contacts-group .add-contact .title{
    flex-basis:0;
    flex-grow:1;
}
.contacts-group .add-contact input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.contacts-group .add-contact input:hover{
    border:1px solid #000;
    cursor:text;
}
.contacts-group .add-contact .add-contact-button{
    background-color:#809dff;
    width:0;
    opacity:0;
    transition: all 0.5s;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
}
.contacts-group .add-contact .add-contact-button:hover{
    cursor:pointer;
}
.contacts-group .add-contact .end-line{
    width:10px;
    background-color:#ababab;
}
.contact-info{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index:200;
}
.contact-info .contact-close{
    cursor: pointer;
    width: 20px;
}
.contact-info .contact-content{
    margin:20px;
}
.contact-info .contact-header{
    margin-top:40px;
    display:flex;
    height:40px;
}
.contact-info .contact-header div{
    display:flex;
    align-items:center;
}
.contact-info .contact-title{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
}
.contact-info .contact-title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.contact-info .contact-title input:hover{
    border:1px dashed #757575;
}
.contact-info .contact-title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contact-info .contact-contacts{
    width:40px;
    margin-right:10px;
    position:relative;
}
.contact-info .contact-contacts img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
    cursor:pointer;
}
.contact-info .contact-contacts .dropdown-contact-contact{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
} 
.contact-info .contact-contacts:hover .dropdown-contact-contact, .contact-info .contact-contacts .dropdown-contact-contact:hover{
    display:block;
}
.contact-info .contact-contacts .dropdown-contact-contact .contact-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.contact-info .contact-control{
    width:35px;
    border-left:1px solid #ededed;
    justify-content:flex-end;
    cursor:pointer;
    position:relative;
}
.contact-info .contact-control i{
    font-size: 30px;
}
.contact-info .contact-control .global-menu i{
    margin-right:20px;
    font-size:30px;
}
.contact-info .contact-control .global-menu:hover{
    cursor:pointer;
}
.contact-info .contact-control .dropdown-contact-menu{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    z-index:5;
}
.contact-info .contact-control .dropdown-contact-menu .dropdown-contact-menu-content{
    display:block;
    height:auto;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    z-index:5;
    overflow: hidden;
}
.contact-info .contact-control .dropdown-contact-menu .dropdown-contact-menu-item{
    text-decoration:none;
    color:#000;
    padding: 10px 20px;
}
.contact-info .contact-control .dropdown-contact-menu .dropdown-contact-menu-item:hover{
    cursor:pointer;
    background-color:#F8F8F8;
}
.contact-info .contact-control:hover .dropdown-contact-menu, .contact-info .contact-control .dropdown-contact-menu:hover{
    display:block;
}
.contact-info .contact-body{
    margin-top:40px;
}
.contact-info .contact-body .tab {
	overflow: hidden;
	display:flex;
}
.contact-info .contact-body .tab .filler{
    flex-grow:1;
    flex-basis:0;
}
.contact-info .contact-body .tab div {
	float: left;
    padding: 0 5px 5px 5px;
	font-size: 20px;
    text-align: center;
    color:#bdbdbd;
    border-bottom: 1px solid #d6d6d6;
}
.contact-info .contact-body .tab div:hover:not(.filler) {
    border-bottom: 2px solid #949494;
    cursor: pointer;
}
.contact-info .contact-body .tab .active {
    border-bottom: 2px solid #0932e6;
    color:#404040;
}
.contact-info .contact-body .tab-icon{
    font-size: 50px;
    color:#171EE6;
    margin-bottom:10px;
}
.contact-info .contact-body .tabcontent {
	display: none;
}
.contact-info .contact-body .add-message{
    width:100%;
    margin-top:30px;
}
.contact-info .contact-body .add-message .add-message-controls{
    display:flex;
}
.contact-info .contact-body .add-message .add-message-controls .record-audio-holder{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.contact-info .contact-body .add-message .add-message-controls .upload-file-holder{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.contact-info .contact-body .add-message .add-message-controls .upload-file-holder i{
    cursor:pointer;
}
.contact-info .contact-body .add-message .add-message-controls .upload-file-holder input{
    display:none;
}
.contact-info .contact-body .add-message-input{
    font-size:15px;
    min-width:95%;
    max-width:95%;
    border-radius:10px;
    padding-left:5px;
    padding-right:5px;
}
.contact-info .contact-body .add-message .button{
    background-color:#3456eb;
    border-radius:10px;
    padding:10px 20px;
    width:fit-content;
    color:#fff;
    cursor:pointer;
}
.contact-info .contact-body .messages-container{
    margin-top:50px;
    width:100%;
    overflow-y: scroll;
    height: 50vh;   
    display:flex;
    flex-direction:column;
}
.contact-info .contact-body .messages{
    width:100%;
}
.contact-info .contact-body .message{
    border: 1px solid #b0b0b0;
    border-radius:10px;
    width:90%;
    margin-top:10px;
    margin-bottom:10px;
}
.contact-info .contact-body .message .header{
    height:30px;
    width:100%;
    display:flex;
    justify-content:space-between;
}
.contact-info .contact-body .message .header .person{
    display:flex;
    align-items:center;
    margin-top:10px;
    margin-left:10px;
}
.contact-info .contact-body .message .header .person img{
    height:30px;
    width:30px;
    border-radius: 100px;
}
.contact-info .contact-body .message .header .person span{
    margin-left:5px;
}
.contact-info .contact-body .message .header .when{
    margin-top:10px;
    margin-right:10px;
    display:flex;
}
.contact-info .contact-body .message .header .when .delete-message{
    margin-left:5px;
    cursor:pointer;
}
.contact-info .contact-body .message .body{
    margin: 20px 10px 10px 10px;
}
.contact-info .contact-body .message .body img, .contact-info .contact-body .message .body video{
    width: 100%;
}
.contact-info .contact-body .message .body .file{
    cursor: url('../img/cursor_download.png'), auto;
}
.contact-info .contact-body .message .body .message-quote{
    font-size: 14px;
    margin-left: 10px;
    padding-left: 5px;
    color:#7f7f7f;
    border-left: 1px solid #3b3b3b;
    margin-bottom: 10px;
}
.contact-info .contact-body .message .footer{
    display:flex;
    height:30px;
    width:100%;
}
.contact-info .contact-body .message .footer div{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
    justify-content:center;
    height:30px;
}
.contact-info .contact-body .message .footer .reaction{
    border-top:1px solid #b0b0b0;
    border-bottom-left-radius:10px;
    position: relative;
    cursor: pointer;
}
.contact-info .contact-body .message .footer .reaction .reactions-dropdown{
    position: absolute;
    bottom: 30px;
    left: 0;
    display: none;
    width: 100%;
    background-color:#fff;
}
.contact-info .contact-body .message .footer .reaction[data-reaction="1"] .current-reaction{
    color: #646aff;
}
.contact-info .contact-body .message .footer .reaction[data-reaction="2"] .current-reaction{
    color: #b90808;
}
.contact-info .contact-body .message .footer .reaction[data-reaction="3"] .current-reaction{
    color: #cad84c;
}
.contact-info .contact-body .message .footer .reaction-to-set:hover {
    background-color: #646aff;
}
.contact-info .contact-body .message .footer .reaction:hover .reactions-dropdown{
    display: flex;
}
.contact-info .contact-body .message .footer .reaction .reactions-dropdown .reaction-item{
    cursor:pointer;
}
.contact-info .contact-body .message .footer .reaction .reactions-dropdown .reaction-like:hover{
    color: #646aff;
}
.contact-info .contact-body .message .footer .reaction .reactions-dropdown .reaction-heart:hover{
    color: #b90808;
}
.contact-info .contact-body .message .footer .reaction .reactions-dropdown .reaction-laugh:hover{
    color: #cad84c;
}
.contact-info .contact-body .message .footer .quote{
    border-top:1px solid #b0b0b0;
    border-left:1px solid #b0b0b0;
    border-bottom-right-radius:10px;
}
.contact-info .contact-body .message .footer .quote:hover{
    cursor:pointer;
    background-color:#cfcfcf;
}
.contact-info #contact-tab-description .description{
    margin:10px;
}
.contact-info .contact-body .messages-container .load-more-messages{
    display:flex;
    align-items:center;
    justify-content:center;
}
.contact-info .contact-body .messages-container .load-more-messages div{
    cursor:pointer;
    padding:5px 10px;
    background-color:#3456eb;
    border-radius:10px;
    color:#fff;
}
.contact-info .contact-body .information-container{
    width:100%;
}
.contact-info .contact-body .informations{
    margin-top:20px;
    width:100%;
    border:1px solid #cfcfcf;
}
.contact-info .contact-body .information{
    width:100%;
    display:flex;
}
.contact-info .contact-body .information:not(:first-child){
    border-top:1px solid #adadad;
}
.contact-info .contact-body .information .key{
    width:25%;
    border-right:1px solid #cfcfcf;
    padding:5px;
    display:flex;
    align-items:center;
    background-color:#cfcfcf;
}
.contact-info .contact-body .information .key .delete-custom-data{
    margin-right:10px;
    cursor:pointer;
}
.contact-info .contact-body .information .value{
    width:75%;
    padding:5px;
    display:flex;
    align-items:center;
    word-break: break-all;
}
.contact-info .contact-body .information .value a{
    color:#000;   
}
.contact-info .contact-body .information .value .information-value{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.contact-info .contact-body .information .value .information-value:hover{
    border:1px dashed #757575;
}
.contact-info .contact-body .information .value .information-value:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contact-info .contact-body .add-information{
    width:100%;
    margin-top:20px;
}
.contact-info .contact-body .add-information .table-body{
    width:100%;
    display:flex;
}
.contact-info .contact-body .add-information .table-body div{
    flex-basis:0;
    flex-grow:1;
}
.contact-info .contact-body .add-information .table-body div input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.contact-info .contact-body .add-information .table-body div input:hover{
    border:1px dashed #757575;
}
.contact-info .contact-body .add-information .table-body div input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contact-info .contact-body .add-information .table-footer {
    width:100%;
    display:flex;
    margin-top:10px;
}
.contact-info .contact-body .add-information .table-footer .button{
    background-color:#3456eb;
    border-radius:10px;
    padding:10px 20px;
    width:fit-content;
    color:#fff;
    cursor:pointer;
}

.contact-info .contact-body .tasks-container{
    width:100%;
}
.contact-info .contact-body .tasks{
    margin-top:20px;
    width:100%;
    border:1px solid #cfcfcf;
}
.contact-info .contact-body .task{
    width:100%;
    display:flex;
}
.contact-info .contact-body .task:not(:first-child){
    border-top:1px solid #adadad;
}
.contact-info .contact-body .task .task-delete{
    cursor:pointer;
    width:30px;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 5%;
}
.contact-info .contact-body .task .date{
    width:25%;
    border-right:1px solid #cfcfcf;
    padding:5px;
    display:flex;
    align-items:center;
    background-color:#cfcfcf;
}
.contact-info .contact-body .task .description{
    width:45%;
    padding:5px;
    display:flex;
    align-items:center;
    word-break: break-all;
}
.contact-info .contact-body .task .price{
    width:25%;
    border-right:1px solid #cfcfcf;
    padding:5px;
    display:flex;
    align-items:center;
    background-color:#cfcfcf;
}
.contact-info .contact-body .task input{
    width:100%;
    border:none;
    font-size:16px;
    background-color: inherit;
}
.contact-info .contact-body .task input:hover{
    border:1px dashed #757575;
}
.contact-info .contact-body .task input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contact-info .contact-body .task .currency{
    position:relative;
}
.contact-info .contact-body .task .currency .task-price-currency-dropdown{
    position:absolute;
    top:0;
    left:0;
    padding-top:20px;
    display:none;
    z-index:5;
}
.contact-info .contact-body .task .currency:hover .task-price-currency-dropdown{
    display:block;
}
.contact-info .contact-body .task .currency .task-price-currency-dropdown .task-price-currency-dropdown-content{
    background-color:#fff;
}
.contact-info .contact-body .task .currency .task-price-currency-dropdown .task-price-currency-dropdown-content .task-price-currency-dropdown-item{
    cursor:pointer;
}
.contact-info .contact-body .add-task{
    width:100%;
    margin-top:20px;
}
.contact-info .contact-body .add-task .table-body{
    width:100%;
    display:flex;
}
.contact-info .contact-body .add-task .table-body div{
    flex-basis:0;
    flex-grow:1;
}
.contact-info .contact-body .add-task .table-body div input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.contact-info .contact-body .add-task .table-body div input:hover{
    border:1px dashed #757575;
}
.contact-info .contact-body .add-task .table-body div input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.contact-info .contact-body .add-task .table-footer {
    width:100%;
    display:flex;
    margin-top:10px;
}
.contact-info .contact-body .add-task .table-footer .button{
    background-color:#3456eb;
    border-radius:10px;
    padding:10px 20px;
    width:fit-content;
    color:#fff;
    cursor:pointer;
}


/* Enquiries Page */
.enquiries-group{
    margin-top:50px;
    margin-left:30px;
    width:95%;
}
.enquiries-group .group-title .title{
    margin-left:10px;
    display:flex;
    width:100%;
    max-width: 350px;
}
.enquiries-group .group-title .status{
    width: 0;
}
.enquiries-group .group-title .date{
    width: 0;
}
.enquiries-group .group-title .name{
    width: 150px;
    text-align:center;
}
.enquiries-group .group-title .email{
    width: 200px;
    text-align:center;
}
.enquiries-group .group-title .coupon{
    width: 100px;
    text-align:center;
}
.enquiries-group .group-title .quotation{
    width:100px;
    text-align:center;
}
.enquiries-group .group-title .message{
    flex-basis:0;
    flex-grow:1;
}
.enquiries-group .group-title .end-line{
    width:10px;
}
.enquiries-group .enquiry{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
}
.enquiries-group .enquiry:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.enquiries-group .enquiry > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.enquiries-group .enquiry .delete-enquiry{
    width:40px;
    justify-content:center;
}
.enquiries-group .enquiry .show{
    width:40px;
    justify-content:center;
    position: relative;
}
.enquiries-group .enquiry .status{
    width: 100px;
    justify-content:center;
}
.enquiries-group .enquiry .date{
    width: 150px;
    justify-content:center;
}
.enquiries-group .enquiry .name{
    width: 150px;
    justify-content:center;
}
.enquiries-group .enquiry .name input{
    width:90%;
    height:30px;
    font-size:16px;
    border:none;
    background-color:inherit;
}
.enquiries-group .enquiry .name input:hover{
    border:1px dashed #757575;
}
.enquiries-group .enquiry .name input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.enquiries-group .enquiry .email{
    width: 200px;
    justify-content:center;
}
.enquiries-group .enquiry .email input{
    width:90%;
    height:30px;
    font-size:16px;
    border:none;
    background-color:inherit;
}
.enquiries-group .enquiry .email input:hover{
    border:1px dashed #757575;
}
.enquiries-group .enquiry .email input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.enquiries-group .enquiry .coupon{
    width: 100px;
    justify-content:center;
}
.enquiries-group .enquiry .coupon input{
    width:90%;
    height:30px;
    font-size:16px;
    border:none;
    background-color:inherit;
}
.enquiries-group .enquiry .coupon input:hover{
    border:1px dashed #757575;
}
.enquiries-group .enquiry .coupon input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.enquiries-group .enquiry .quotation{
    width:100px;
    justify-content:center;
}
.enquiries-group .enquiry .message{
    flex-basis:0;
    flex-grow:1;
    position:relative;
    width: 1px;
}
.enquiries-group .enquiry .message-content{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.enquiries-group .enquiry .message-content:hover{
    white-space: normal;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    overflow-y: scroll;
    background-color:#fff;
    padding:10px;
    z-index: 100;
    width: 100%;
}
.enquiries-group .enquiry .current-task{
    width:300px;
    font-size:20px;
    justify-content: center;
}
.enquiries-group .enquiry .end-line{
    width:10px;
    background-color:#ababab;
}
.enquiries-group .add-enquiry{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.enquiries-group .add-enquiry .start-line{
    width:10px;
    background-color:#0039f5;
}
.enquiries-group .add-enquiry .title{
    flex-basis:0;
    flex-grow:1;
}
.enquiries-group .add-enquiry input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.enquiries-group .add-enquiry input:hover{
    border:1px solid #000;
    cursor:text;
}
.enquiries-group .add-enquiry .add-button{
    background-color:#809dff;
    width:0;
    opacity:0;
    transition: all 0.5s;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
}
.enquiries-group .add-enquiry .add-button:hover{
    cursor:pointer;
}
.enquiries-group .add-enquiry .end-line{
    width:10px;
    background-color:#ababab;
}
.enquiry-info{
    position: absolute;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index:200;
}
.enquiry-info .enquiry-close{
    cursor: pointer;
    width: 20px;
}
.enquiry-info .enquiry-content{
    margin:20px;
    height: 90%;
}
.enquiry-info .enquiry-header{
    margin-top:40px;
    display:flex;
    height:40px;
}
.enquiry-info .enquiry-header div{
    display:flex;
    align-items:center;
}
.enquiry-info .enquiry-title{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
}
.enquiry-info .enquiry-title input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.enquiry-info .enquiry-title input:hover{
    border:1px dashed #757575;
}
.enquiry-info .enquiry-title input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.enquiry-info .enquiry-enquiries{
    width:40px;
    margin-right:10px;
    position:relative;
}
.enquiry-info .enquiry-enquiries img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.enquiry-info .enquiry-enquiries .dropdown-enquiry-enquiry{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
} 
.enquiry-info .enquiry-enquiries:hover .dropdown-enquiry-enquiry, .enquiry-info .enquiry-enquiries .dropdown-enquiry-enquiry:hover{
    display:block;
}
.enquiry-info .enquiry-enquiries .dropdown-enquiry-enquiry .enquiry-set-enquiry:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.enquiry-info .enquiry-control{
    width:35px;
    border-left:1px solid #ededed;
    justify-content:flex-end;
    cursor:pointer;
    position:relative;
}
.enquiry-info .enquiry-control i{
    font-size: 30px;
}
.enquiry-info .enquiry-control .global-menu i{
    margin-right:20px;
    font-size:30px;
}
.enquiry-info .enquiry-control .global-menu:hover{
    cursor:pointer;
}
.enquiry-info .enquiry-control .dropdown-enquiry-menu{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
}
.enquiry-info .enquiry-control .dropdown-enquiry-menu .dropdown-enquiry-menu-item{
    text-decoration:none;
    color:#000;
}
.enquiry-info .enquiry-control .dropdown-enquiry-menu .dropdown-enquiry-menu-item:not(:first-child){
    margin-top:10px;
}
.enquiry-info .enquiry-control .dropdown-enquiry-menu .dropdown-enquiry-menu-item:hover{
    border-bottom:1px solid #838383;
}
.enquiry-info .enquiry-control:hover .dropdown-enquiry-menu, .enquiry-info .enquiry-control .dropdown-enquiry-menu:hover{
    display:block;
}
.enquiry-info .enquiry-body{
    margin-top:40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.enquiry-info .enquiry-body .tab {
	overflow: hidden;
	display:flex;
}
.enquiry-info .enquiry-body .tab .filler{
    flex-grow:1;
    flex-basis:0;
}
.enquiry-info .enquiry-body .tab div {
	float: left;
    padding: 0 5px 5px 5px;
	font-size: 20px;
    text-align: center;
    color:#bdbdbd;
    border-bottom: 1px solid #d6d6d6;
}
.enquiry-info .enquiry-body .tab div:hover:not(.filler) {
    border-bottom: 2px solid #949494;
    cursor: pointer;
}
.enquiry-info .enquiry-body .tab .active {
    border-bottom: 2px solid #0932e6;
    color:#404040;
}
.enquiry-info .enquiry-body .tab-icon{
    font-size: 50px;
    color:#171EE6;
    margin-bottom:10px;
}
.enquiry-info .enquiry-body .tabcontent {
	display: none;
}
.enquiry-info .enquiry-body #enquiry-show-body{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.enquiry-info .enquiry-body .enquiry-action-buttons{
    display:flex;
    justify-content: space-between;
}
.enquiry-info .enquiry-body .enquiry-action-buttons .enquiry-action-reject{
    background-color: #950000;
    color: #fff;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    padding:5px 0;
}
.enquiry-info .enquiry-body .enquiry-action-buttons .enquiry-action-save{
    background-color: #E3C321;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    padding:5px 0;
}
.enquiry-info .enquiry-body .message{
    height:30%;
    overflow-y:scroll;
}
.enquiry-info .enquiry-body .quotation{
    flex:1;
}
.enquiry-info .enquiry-body .quotation table{
    border-collapse:collapse;
}
.enquiry-info .enquiry-body .quotation table, .enquiry-info .enquiry-body .quotation table tr, .enquiry-info .enquiry-body .quotation table th, .enquiry-info .enquiry-body .quotation table td{
    border:1px solid #000;
}
.enquiry-info .enquiry-body .quotation table th{
    text-align:left;
}
.enquiry-info .enquiry-body .quotation .enquiry-action-buttons #enquiry-action-save{
    cursor: pointer;
}
/* END - Enquiries page*/

/* Invoice Payment Page */
.invoice-payment{
    width:100%;
    height:100vh;
    background-color:#EDEDED;
}
.invoice-payment .invoice-payment-content{
    display:flex;
    height:100%;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout{
    width:60%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .payment-title{
    font-size:30px;
    font-weight: 700;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .payment-subtitle{
    font-size:20px;
    font-weight:700;
    margin-top:20px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .payment-button{
    background-color:#E3C321;
    color:#000;
    border-radius:20px;
    padding:10px 20px;
    width: fit-content;
    margin-top:20px;
    cursor:pointer;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .payment-return{
    margin-bottom:20px;
    cursor:pointer;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options{
    margin-top:50px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-options-title{
    font-weight:700;
    font-size:16px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option{
    background-color:#fff;
    border-radius:10px;
    width:100%;
    margin-top:20px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content{
    padding:10px;
    display:flex;
    justify-content:space-between;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-title{
    font-weight:600;
    font-size:18px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button{
    background-color:#E3C321;
    border-radius:10px;
    color:#000;
    padding:10px 20px;
    cursor:pointer;
    width: 100px;
    text-align: center;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-black{
    background-color:#000;
    font-weight:700;
    border-radius:10px;
    color:#fff;
    padding:10px 20px;
    cursor:pointer;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-holder{
    display:flex;
    justify-content: flex-end;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-additional{
    width: 50% !important;
    position:relative;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-additional .paypal-buttons{
    margin-left: -100%;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content #payment-option-revolut-button iframe{
    min-width: 50% !important;
    transform: translateZ(10px);
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-holder i{
    transition: all 0.5s ease-in;
    animation-name: load-animation; 
    animation-duration: 1.0s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name: load-animation; 
    -webkit-animation-duration: 1.0s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .invoice-paid-info{
    margin: 100px 0;
    padding: 20px 10px;
    color: #000;
    font-size: 30px;
    border: 3px solid #0d5c13;
    border-radius: 20px;
    text-align: center;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-main .invoice-paid-info i{
    color: #0d5c13;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer{
    display:none;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box{
    margin-top:50px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-menu{
    display:flex;
    background-color:#d4d4d4;
    padding:3px;
    border-radius:10px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-menu .transfer-box-menu-option{
    width: 50%;
    text-align: center;
    border-radius: 5px;
    padding: 2px 0;
    cursor:pointer;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-menu .transfer-box-menu-option.active{
    background-color: #fff;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body{
    background-color:#fff;
    border-radius:20px;
    width:100%;
    margin-top:20px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body .transfer-box-content{
    padding:10px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body #transfer-international{
    display:none;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body .transfer-box-content .transfer-details-row{
    display:flex;
    justify-content:space-between;
    color:#E3C321;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body .transfer-box-content .transfer-details-row .copy-data{
    cursor:pointer;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .page-transfer .transfer-box .transfer-box-body .transfer-box-content .transfer-details-row:not(.last-child){
    margin-bottom: 20px;
    margin-top: 5px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .footer{
    margin-top:50px;
    text-align:center;
    color:#828282;
    line-height:30px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .footer .logos{
    margin-top: 20px;
}
.invoice-payment .invoice-payment-content .invoice-payment-checkout .invoice-payment-checkout-content .footer .logos img{
    width: 200px;
}
.invoice-payment .invoice-payment-content .invoice-payment-preview{
    width:40%;
    height:100%;
}
.invoice-payment .invoice-payment-content .invoice-payment-preview .invoice-payment-preview-content{
    height:100%;
    display: flex;
    align-items: center;
}
/* END - Invoice Payment Page */

/* Agrement Payment Page */
.agrement-payment{
    width:100%;
    height:100vh;
    background-color:#EDEDED;
}
.agrement-payment .agrement-payment-content{
    display:flex;
    height:100%;
    overflow: hidden;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout{
    width: 60%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    scroll-behavior: smooth;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .payment-title{
    font-size:30px;
    font-weight: 700;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .payment-subtitle{
    font-size:20px;
    font-weight:700;
    margin-top:20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .payment-button{
    background-color:#E3C321;
    color:#000;
    border-radius:20px;
    padding:10px 20px;
    width: fit-content;
    margin-top:20px;
    cursor:pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .payment-return{
    margin-bottom:20px;
    cursor:pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options{
    margin-top:50px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-options-title{
    font-weight:700;
    font-size:16px;
    display: flex;
    align-items: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-options-title .agrement-upload-title-help{
    margin-left:5px;
    cursor: pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-options-title .agrement-upload-title-help i{
    margin-left: 5px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-section-title .payment-options-title-number{
    margin-right: 5px;
    background-color: #e3c321;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option{
    background-color:#fff;
    border-radius:10px;
    width:100%;
    margin-top:20px;
    opacity: 0.5;
    cursor:pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option.active{
    opacity: 1;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option.not-available{
    opacity: 0.5;
    cursor: no-drop;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content{
    padding:10px;
    display:flex;
    justify-content:space-between;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-title{
    font-weight:600;
    font-size:18px;
    margin-right: 20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button{
    background-color:#E3C321;
    border-radius:10px;
    color:#000;
    padding:10px 20px;
    cursor:pointer;
    width: 110px;
    text-align: center;
    text-decoration:none;
    display: flex;
    align-items: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button i{
    margin-left:5px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option.not-available .payment-option-content .payment-option-button{
    cursor: no-drop;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-black{
    background-color:#000;
    font-weight:700;
    border-radius:10px;
    color:#fff;
    padding:10px 20px;
    cursor:pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-holder{
    display:flex;
    justify-content: flex-end;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-additional{
    width: 50% !important;
    position:relative;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-additional .paypal-buttons{
    margin-left: -100%;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content #payment-option-revolut-button iframe{
    min-width: 50% !important;
    transform: translateZ(10px);
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .payment-options .payment-option .payment-option-content .payment-option-button-holder i{
    transition: all 0.5s ease-in;
    animation-name: load-animation; 
    animation-duration: 1.0s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name: load-animation; 
    -webkit-animation-duration: 1.0s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-holder .agrement-upload-title{
    font-weight:700;
    font-size:16px;
    margin-top:40px;
    display: flex;
    align-items: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-ask .agrement-ask-title{
    margin-top:20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-ask .agrement-ask-button{
    background-color: #E3C321;
    border-radius: 10px;
    color: #000;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top:20px;
    font-weight: 700;
    font-size: 20px;
}

.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-sign-info{
    margin: 100px 0;
    padding: 20px 10px;
    color: #000;
    font-size: 30px;
    border: 3px solid #0d5c13;
    border-radius: 20px;
    text-align: center;
}
.agrement-help{
    position:fixed;
    width:100%;
    height:100%;
    background-color: #000000e6;
    display:none;
    justify-content: center;
    align-items: center;
    top:0;
    left:0;
    opacity:0;
}
.agrement-help .agrement-help-box{
    background-color: #fff;
    width: 800px;
    height: 400px;
    border-radius: 20px;
    position: relative;
}
.agrement-help .agrement-help-box .agrement-help-holder{
    padding:20px;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-title{
    font-size: 30px;
    text-align: center;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content{
    margin-top:40px;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-menu{
    display:flex;
    background-color:#d4d4d4;
    padding:3px;
    border-radius:10px;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-menu .agrement-help-menu-option{
    width: 50%;
    text-align: center;
    border-radius: 5px;
    padding: 2px 0;
    cursor:pointer;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-menu .agrement-help-menu-option.active{
    background-color: #fff;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body{
    background-color:#fff;
    border-radius:20px;
    width:100%;
    margin-top:20px;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body .transfer-box-content{
    padding:10px;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body #transfer-upload{
    display:none;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body .transfer-box-content .transfer-details-row{
    display:flex;
    justify-content:space-between;
    color:#E3C321;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body .transfer-box-content .transfer-details-row .copy-data{
    cursor:pointer;
}
.agrement-help .agrement-help-box .agrement-help-holder .agrement-help-content .agrement-help-body .transfer-box-content .transfer-details-row:not(.last-child){
    margin-bottom: 20px;
    margin-top: 5px;
}
.agrement-help .agrement-help-close{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box{
    background-color:#fff;
    border-radius:10px;
    width:100%;
    margin-top:20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content{
    padding:20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content input{
    display:none;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label{
    text-align: center;
    cursor:pointer;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label .icon{
    font-size: 50px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label .icon .fa-file-upload{
    color: #E3C321;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label .icon .fa-check-circle{
    color: #09611c;
    display:none;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label .icon .fa-spinner{
    display:none;
    animation-name: load-animation; 
    animation-duration: 1.0s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: load-animation; 
    -webkit-animation-duration: 1.0s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content label .text{
    font-size: 20px;
    max-width:400px;
    margin:0 auto;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .agrement-upload-box .agrement-upload-box-content .info{
    margin-top: 20px;
    font-size: 14px;
    color: #c50000
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .invoice-paid-info{
    margin: 100px 0;
    padding: 20px 10px;
    color: #000;
    font-size: 30px;
    border: 3px solid #0d5c13;
    border-radius: 20px;
    text-align: center;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .page-main .invoice-paid-info i{
    color: #0d5c13;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .footer{
    margin-top:50px;
    text-align:center;
    color:#828282;
    line-height:30px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .footer .logos{
    margin-top: 20px;
}
.agrement-payment .agrement-payment-content .agrement-payment-checkout .agrement-payment-checkout-content .footer .logos img{
    width: 200px;
}
.agrement-payment .agrement-payment-content .agrement-payment-preview{
    width:40%;
    height:100%;
}
.agrement-payment .agrement-payment-content .agrement-payment-preview .agrement-payment-preview-content{
    height:100%;
    display: flex;
    align-items: center;
}
/* END - Agrement Payment Page */

/* Affiliate page */
.content-affiliate{
    margin-top: 50px;
}
.content-affiliate .code-level .code-level-content{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.content-affiliate .code-level .code-level-content .code-level-title{
    font-size: 20px;
    margin-bottom: 10px;
}
.content-affiliate .code-level .code-level-content .code-badge .badge-content{
    width: 100px;
    height: 100px;
    background-color: #E3C321;
    border: 3px solid #052007;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
}
.content-affiliate .code-level .code-level-content .code-level-details{
    font-size: 20px;
    margin-top: 10px;
}
.content-affiliate .code-level .code-level-content .code-level-next{
    margin-top: 10px;
}
.content-affiliate .code-level .code-level-content .code-level-next .progress-track{
    width: 300px;
    height: 10px;
    background-color: #767676;
    border-radius: 5px;
}
.content-affiliate .code-level .code-level-content .code-level-next .progress-track .progress{
    background-color: #E3C321;
    border-radius: 5px;
    height: 100%;
}
.content-affiliate .code-level .code-level-content .code-level-next .text{
    text-align:center;
}
.content-affiliate .code-header{
    margin-left:60px;
    margin-top:80px;
}
.content-affiliate .code-header .title{
    font-size: 24px;
}
.content-affiliate .code-header .change{
    display: flex;
    margin-top:5px;
}
.content-affiliate .code-header .change input{
    margin-right: 5px;
    font-size: 20px;
    border: 1px solid #b3b3b3;
    padding: 10px;
    border-radius: 5px;
}
.content-affiliate .code-header .change .button{
    padding: 5px 20px;
    background-color: #E3C321;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    pointer-events: none;
    opacity:0.5;
}
.content-affiliate .code-header .change .button.active{
    pointer-events: auto;
    opacity:1;
}
.content-affiliate .code-link-generator{
    margin-left:60px;
}
.content-affiliate .code-link-generator .generator{
    margin-top: 40px;
}
.content-affiliate .code-link-generator .generator .title{
    font-size: 24px;
}
.content-affiliate .code-link-generator .generator input{
    margin-top: 5px;
    font-size: 20px;
    border: 1px solid #b3b3b3;
    padding: 10px;
    border-radius: 5px;
    width: 90%;
}
.content-affiliate .code-link-generator .generator input.error, .content-affiliate .code-link-generator .generator input.error:focus{
    border:2px solid #d10c0c;
    outline:none;
}
.content-affiliate .code-link-generator .link-preview{
    margin-top: 5px;
    display: flex;
}
.content-affiliate .code-link-generator .link-preview .copy{
    margin-right: 10px;
    cursor:pointer;
    color: #E3C321;
}
.content-affiliate .code-statistics{
    margin-left:60px;
    margin-top:80px;
}
.content-affiliate .code-statistics .statistics{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    width: fit-content;
    margin: 40px auto 0 auto;
}
.content-affiliate .code-statistics .statistics.grid-2{
    grid-template-columns: 1fr 1fr;
}
.content-affiliate .code-statistics .statistics .statistic{
    background-color: #4e4e4e;
    border-radius: 20px;
    text-align:center;
    color:#fff;
    max-width:300px;
}
.content-affiliate .code-statistics .statistics .statistic .statistic-content{
    padding:20px;
}
.content-affiliate .code-statistics .statistics .statistic .statistic-content .number{
    font-size:60px;
    font-weight: 700;
}
.content-affiliate .code-statistics .statistics .statistic .statistic-content .subtitle{
    font-size:15px;
}
.content-affiliate .code-statistics .statistics .statistic .statistic-content .title{
    font-size:25px;
    margin-top:10px;
}
.content-affiliate .code-materials .materials-title{
    padding: 20px;
    background-color: #9e9e9e;
    font-size: 30px;
    margin-top: 80px;
}
.content-affiliate .code-materials .materials-content .material{
    background-color:#7c7c7c;
    padding:20px;
    border-radius:20px;
    margin:20px;
}
.content-affiliate .code-materials .materials-content img{
    width:100%;
}


.content-affiliate .join-programme{
    display:flex;
}
.content-affiliate .join-programme input{
    margin-right: 5px;
    font-size: 20px;
    border: 1px solid #b3b3b3;
    padding: 10px;
    border-radius: 5px;
}
.content-affiliate .join-programme .button{
    padding: 5px 20px;
    background-color: #E3C321;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    pointer-events: none;
    opacity:0.5;
}
.content-affiliate .join-programme .button.active{
    pointer-events: auto;
    opacity:1;
}


.content-affiliate .group-table .group-title .statistics{
    width:350px;
    text-align:center;
}
.content-affiliate .group-table .group-title .level{
    width:50px;
    text-align:center;
}
.content-affiliate .group-table .group-title .code{
    width:100px;
    text-align:center;
}
.affiliate{
    display:flex;
    height:50px;
    margin-left:30px;
    background-color:#f2f2f2;
    margin-bottom:1px;
    position:relative;
}
.affiliate:hover{
    background-color:#e3e1e1;
    cursor:pointer;
}
.affiliate > div:not(:last-child){
    height:50px;
    display:flex;
    align-items:center;
    border-left:1px solid #fff;
}
.affiliate div.is-message-to-display {
    height: 10px;
    width: 10px;
    background-color: #eb0606;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 200px;
}
.affiliate .delete-affiliate{
    width:40px;
    justify-content:center;
}
.affiliate .edit{
    width:40px;
    justify-content:center;
    position: relative;
}
.affiliate .username{
    flex-basis:0;
    flex-grow:1;
    padding-left:10px;
    min-width: 200px;
}
.affiliate .username input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.affiliate .username input:hover{
    border:1px dashed #757575;
}
.affiliate .username input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.affiliate .contact{
    display:flex;
    width:100px;
    justify-content:center;
    position:relative;
}
.affiliate .contact img{
    height: 40px;
    width: 40px;
    border-radius: 100px;
    object-fit:cover;
}
.affiliate .contact .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.affiliate .contact .contact-dropdown .affiliate-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.affiliate .contact .contact-dropdown .possible-contact{
    display:flex;
    align-items:center;
}
.affiliate .contact .contact-dropdown .possible-contact div{
    margin-left:10px;
}
.affiliate .code{
    width:100px;
    justify-content:center;
    position:relative;
}
.affiliate .code input{
    width:90%;
    height:30px;
    font-size:20px;
    border:none;
    background-color:inherit;
}
.affiliate .code input:hover{
    border:1px dashed #757575;
}
.affiliate .code input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.affiliate .number_field{
    width:50px;
    justify-content:center;
}

.affiliate .number_field input{
    width:90%;
    height:30px;
    font-size:15px;
    border:none;
    background-color:inherit;
    text-align: center;
}
.affiliate .number_field input:hover{
    border:1px dashed #757575;
    cursor:text;
}
.affiliate .number_field input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.affiliate .commission{
    width:100px;
    display:flex;
    position:relative;
    justify-content: flex-end;
}
.affiliate .price input{
    border:none;
    background-color:inherit;
    width: 50%;
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
}
.affiliate .price input:hover{
    border:1px dashed #757575;
}
.affiliate .price input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.affiliate .price .price-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.affiliate .end-line{
    width:10px;
    background-color:#ababab;
}
.add-affiliate{
    margin-left:30px;
    height:50px;
    display:flex;
    margin-bottom:1px;
}
.add-affiliate .start-line{
    width:10px;
    background-color:#0039f5;
}
.add-affiliate .title{
    flex-basis:0;
    flex-grow:1;
}
.add-affiliate input{
    border:1px solid #f2f2f2;
    height:46px;
    width:100%;
    font-size:20px;
}
.add-affiliate input:hover{
    border:1px solid #000;
    cursor:text;
}
.add-affiliate .add-affiliate-holder{
    flex: 1;
}
.add-affiliate .add-affiliate-button{
    background-color:#E3C321;
    width: 150px;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    cursor:pointer;
    border-radius: 10px;
}
.add-affiliate .end-line{
    width:10px;
    background-color:#ababab;
}



.content-affiliate{
    position: relative;
}
.affiliate-info{
    position: fixed;
    height: 100%;
    width:0;
    background-color: #fff;
    top: 0;
    overflow:hidden;
    right: 0;
    z-index:200;
}
.affiliate-info .affiliate-close{
    cursor: pointer;
    width: 20px;
}
.affiliate-info .affiliate-content{
    margin:20px;
    height:95%;
}
.affiliate-info .affiliate-header{
    margin-top:40px;
    display:flex;
    height:40px;
}
.affiliate-info .affiliate-header div{
    display:flex;
    align-items:center;
}
.affiliate-info .affiliate-username{
    flex-grow:1;
    flex-basis:0;
    display:flex;
    align-items:center;
    font-size:20px;
}
.affiliate-info .affiliate-contacts{
    width:40px;
    margin-right:10px;
    position:relative;
    cursor:pointer;
}
.affiliate-info .affiliate-contacts img {
    border-radius: 500px;
    width: 40px;
    height: 40px;
}
.affiliate-info .affiliate-contacts .contact-dropdown{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    padding:10px 20px;
    z-index:5;
}
.affiliate-info .affiliate-contacts .contact-dropdown .affiliate-set-contact:hover{
    cursor:pointer;
    border-bottom:1px solid #838383;
}
.affiliate-info .affiliate-contacts .contact-dropdown .possible-contact{
    display:flex;
    align-items:center;
}
.affiliate-info .affiliate-contacts .contact-dropdown .possible-contact div{
    margin-left:10px;
}
.affiliate-info .affiliate-control{
    width:35px;
    border-left:1px solid #ededed;
    justify-content:flex-end;
    cursor:pointer;
    position:relative;
}
.affiliate-info .affiliate-control i{
    font-size: 30px;
}
.affiliate-info .affiliate-control .global-menu i{
    margin-right:20px;
    font-size:30px;
}
.affiliate-info .affiliate-control .global-menu:hover{
    cursor:pointer;
}
.affiliate-info .affiliate-control .dropdown-affiliate-menu{
    display:none;
    position:absolute;
    right:0;
    top:30px;
    z-index:5;
}
.affiliate-info .affiliate-control .dropdown-affiliate-menu .dropdown-affiliate-menu-content{
    display:block;
    height:auto;
    width:max-content;
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    z-index:5;
    overflow: hidden;
}
.affiliate-info .affiliate-control .dropdown-affiliate-menu .dropdown-affiliate-menu-item{
    text-decoration:none;
    color:#000;
    padding: 10px 20px;
}
.affiliate-info .affiliate-control .dropdown-affiliate-menu .dropdown-affiliate-menu-item:hover{
    cursor:pointer;
    background-color:#F8F8F8;
}
.affiliate-info .affiliate-control:hover .dropdown-affiliate-menu, .affiliate-info .affiliate-control .dropdown-affiliate-menu:hover{
    display:block;
}
.affiliate-info .affiliate-body{
    margin-top:40px;
    height:83%;
}
.affiliate-info .affiliate-body .data{
    width: 100%;
}
.affiliate-info .affiliate-body .data .row{
    display:flex;
    justify-content: space-between;
    padding:10px 0;
    border: 1px solid #808080;
    border-left:none;
    border-right:none;
}
.affiliate-info .affiliate-body .data .row .value input{
    font-size:20px;
    border:none;
    background-color:inherit;

}
.affiliate-info .affiliate-body .data .row .value input:hover{
    border:1px dashed #757575;
}
.affiliate-info .affiliate-body .data .row .value input:focus{
    background-color:#fff;
    border:1px dashed #757575;
    outline: none;
}
.affiliate-info .affiliate-action-button-holder{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-top:30px;
}
.affiliate-info .affiliate-action-button{
    width: 50px;
    padding: 5px 20px;
    background-color: #E3C321;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

/* END - Affiliate page */


.title-box-holder{
    position: relative;
}
.show-title-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-box{
    position:absolute;
    top:50px;
    left:0;
    z-index:20;
    background-color:#fff;
    box-shadow: 0px 0px 7px #00000069;
    border-radius: 10px;
    width:100px;
    display:none;
}
.title-box .title-box-content{
    padding:10px;
}













/* Login Page */
.login-page{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100vh;
    background-color:#ededed;
}
.login-page section{
    display:flex;
    padding-left:50px;
    padding-right:50px;
    width: 100%;
    max-width: 1200px;
}
.login-page section .left-side{
    display:flex;
    justify-content:space-between;
    flex-direction:column;
    flex-basis:0;
    flex-grow:1;
    background-color:#E3C321;
    border-top-left-radius:25px;
    border-bottom-left-radius:25px;
}
.login-page section .left-side .title{
    font-weight:600;
    color:#000;
}
.login-page section .left-side .line{
    margin-top:10px;
    height:2px;
    width:30%;
    background-color:#000;
}
.login-page section .left-side .description{
    font-weight:400;
    color:#000;
}
.login-page section .left-side .button{
    color:#E3C321;
    background-color:#000;
}
.login-page section .right-side{
    display:flex;
    flex-basis:0;
    flex-grow:1;
    flex-direction:column;
    background-color:#fff;
    border-top-right-radius:25px;
    border-bottom-right-radius:25px;
    position:relative;
}
.login-page section .right-side .title{
    font-size:30px;
    font-weight:600;
    color:#404040;
    text-align:center;
}
.login-page .additional-button{
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.login-page .additional-button a{
    color: #000;
    text-decoration: none;
}
.login-page .field-design {
    margin-top:30px;
    font-size: 16px; 
    padding: 20px 0; 
    height: 56px; 
    border: none; 
    border-bottom: solid 1px #00000010; 
    background: #fff; 
    width: 100%; 
    box-sizing: border-box; 
    transition: all .3s linear; 
    color: #000; 
    font-weight: 400;
}
.login-page .field-design:focus {
    border-bottom: solid 1px #000; 
    outline: 0; 
}
.login-page .password-box .field-design{
    margin-top:0;
}
.login-page .password-box{
    margin-top:30px;
    position:relative;
}
.login-page .password-box input{
    padding:20px 30px;
}
.login-page .password-box .icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor:pointer;
}
.login-page .password-box .icon.dice{
    left:0;
}
.login-page .password-box .icon.fa-eye{
    display:block;
    right:0;
}
.login-page .password-box .icon.fa-eye-slash{
    display:none;
    right:0;
}
.login-page .password-strength{
    justify-content: space-between;
    display:none;
}
.login-page .password-strength.active{
    display:flex;
}
.login-page .password-requirements{
    margin-top:20px;
}
.login-page .password-requirements .row{
    display:flex;
    color:#009305;
}
.login-page .password-requirements .row.no-found{
    color:#d00;
}
.login-page .password-requirements span{
    margin-left:5px;
}
.login-page .password-requirements .row.no-found .fa-times{
    display:block;
}
.login-page .password-requirements .row.no-found .fa-check{
    display:none;
}
.login-page .password-requirements .row .fa-times{
    display:none;
}
.login-page .password-requirements .row .fa-check{
    display:block;
}
.login-page section .right-side .button{
    background-color:#E3C321;
    color:#fff;
}
.login-page  #recaptcha{
    margin-top:20px;
}
.login-page .button{
    margin-top:10px;
    border-radius:25px;
    font-size:15px;
    font-weight:600;
    text-align:center;
    padding:15px;
    border:none;
    text-decoration:none;
    -moz-box-shadow: 2px 9px 8px -3px rgba(0,0,0,0.61); 
    -webkit-box-shadow: 2px 9px 8px -3px rgba(0,0,0,0.61);
    box-shadow: 2px 9px 8px -3px rgba(0,0,0,0.61);
}
.login-page .button:hover{
    cursor:pointer;
}
.login-page .remember{
    margin-top:10px;
}
.login-page .error-box{
    color:#b31414;
    height: 30px;
    margin-bottom: 20px;
    background-color: #F4F4F4;
    display: flex;
    padding-left: 10px;
    align-items: center;
    border-left: 5px solid #b31414;
    border-radius: 10px;
    opacity: 0;
    font-weight: 700;
}
@media screen and (min-width:1500px){
    .login-page section .left-side{
        padding:100px;
    }
    .login-page section .right-side{
        padding:50px 100px 100px 100px;
    }
    .login-page .additional-button{
        bottom:60px;
    }
    .login-page section .left-side .title{
        font-size:25px;
    } 
    .login-page section .left-side .description{
        font-size:20px;
        margin-top:20px;
    }
}
@media screen and (min-width:1000px) and (max-width:1500px){
    .login-page section .left-side{
        padding:100px 5% 100px 5%;
    }
    .login-page section .right-side{
        padding:50px 5% 100px 5%;
    }
    .login-page .additional-button{
        bottom:60px;
    }
    .login-page section .left-side .title{
        font-size:25px;
    }  
    .login-page section .left-side .description{
        font-size:20px;
        margin-top:20px;
    }
}
@media screen and (max-width:1000px){
    .login-page section .left-side{
        padding:100px 50px 100px 50px;
    }
    .login-page section .right-side{
        padding:100px 50px 100px 50px;
    }
    .login-page .additional-buttond{
        bottom:60px;
    }
    .login-page section .left-side .title{
        font-size:20px;
    }  
    .login-page section .left-side .description{
        font-size:15px;
    }
}

@keyframes load-animation {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
 
@-webkit-keyframes load-animation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}