@charset "utf-8";
@import url(fonts/ubuntu/webfont.css);

/**********************************
 ************* GENERAL ************
 **********************************/

* {
    outline: none;
    margin: 0; 
    padding: 0; 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
}

img { 
    border: 0;
}

html, body {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #ecf0f5;
}

body.login {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.popup {
    height: auto;
    background: #ffffff;
}

.clearfix {
    clear: both;
    width: 100%;
    height: 1px;
    margin-top: -1px;
}

.animated {
    animation-duration: 0.8s;
}

a.arrow-selected, a.arrow-selected:link, a.arrow-selected:visited {
    font-weight: bold;
}

/**********************************
 ************ BOOTSTRAP ***********
 **********************************/

.dropdown-menu.show {
    width: 100%;
    min-width: fit-content;
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 5px 0 rgba(202, 175, 175, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
}

.dropdown-item {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    padding: 6px 12px;
}

.dropdown-item:after {
    display: table;
    clear: both;
    content: "";
}

.dropdown-item i {
    font-size: 12px !important;
    vertical-align: middle !important;
    padding: 0 !important;
    margin: 0 5px 0 0 !important;
    color: #333 !important;
}

.dropdown-item:hover, .dropdown-item.selected {
    background-color: #e5e5e5;
}

.dropdown-item:active {
    color: #333;
}

.custom-control.custom-checkbox .custom-control-label {
    cursor: pointer;
}

.custom-checkbox .custom-control-label:before {
    border-radius: 3px;
}

.custom-control-input:checked~.custom-control-label:before {
    color: #fff;
    border-color: #2b94e1;
    background-color: #2b94e1;
}

.form-group input[type="text"], .form-group input[type="password"] {
    border: 1px solid #a6b0b3;
}

.form-group input[type="text"]:focus, .form-group input[type="password"]:focus {
    border-color: #2b94e1;
}

.form-group .dropdown select {
    display: block;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: -100;
}

.form-group .dropdown .btn-select {
    display: block;
    position: relative;
    width: 100%;
    height: 32px;
    border: 1px solid #ced4da;
    background: #ffffff;
    border-radius: 4px;
    color: #333333;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 26px 0px 12px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group .dropdown .btn-select:after {
    display: none;
}

.form-group .dropdown .btn-select .icon-dropdown {
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    top: 9px;
    right: 12px;
}

.form-group .dropdown .btn-select:focus {
    border: 1px solid #a6b0b3;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
}

.form-group .dropdown .dropdown-menu .form-group {
    position: relative;
}

.form-group .dropdown .dropdown-menu .form-group input[type="text"] {
    height: 32px;
    padding-right: 40px;
}

.form-group .dropdown .dropdown-menu .form-group svg {
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 9px;
    right: 12px;
}

.form-group .dropdown .scrollable-menu {
    width: fit-content;
    height: auto;
    max-height: 300px;
    overflow-x: hidden;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    cursor: not-allowed;
}

/**********************************
 ************* BADGES *************
 **********************************/

.badge {
    display: inline-block;
    min-width: 75px;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 0 5px;
    height: 26px;
    line-height: 25px;
    text-align: center;
}

.badge.badge-success {
    background-color: #eefff2;
    color: #1b9200;
    border: 1px solid #1b9200;
}

.badge.badge-danger {
    background-color: #f8ebeb;
    color: #e12b2b;
    border: 1px solid #e12b2b;
}

.badge.badge-warning {
    background-color: #fffaec;
    color: #e9af00;
    border: 1px solid #ffc107;
}

/**********************************
 ************** LOGIN *************
 **********************************/
 
#login-modal {
    display: block;
    position: relative;
    width: 350px;
    height: auto;
    min-height: 345px;
    margin: 30vh auto 0 auto;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    background: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    padding: 20px;
    box-sizing: border-box;
}

#login-modal .logo {
    display: block;
    position: absolute;
    width: 100%;
    height: 80px;
    text-align: center;
    top: -110px;
    left: 0;
}

#login-modal .logo img {
    display: block;
    position: absolute;
    max-width: 70%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#login-modal h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

#login-modal label {
    display: block;
    width: 100%;
}

#login-modal label a, #login-modal label a:link, #login-modal label a:visited {
    display: block;
    float: right;
    text-decoration: none;
    color: #007bff;
}

#login-modal label a:hover {
    text-decoration: underline;
}

#login-modal .custom-checkbox {
    margin-top: 5px;
}

#login-modal .btn, #login-modal .btn:link, #login-modal .btn:visited {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 43px;
    font-size: 16px;
    border: 1px solid #007bff;
    border-radius: 4px;
    background-color: #007bff;
    color: #ffffff;
    padding: 0 14px;
    margin: 20px 0 0 0;
    box-sizing: border-box;
}

#login-modal .btn:hover {
    background-color: #2890ff;
}

#login-modal .btn:focus {
    box-shadow: 0 0 0 0.2rem #c4e1ff;
}

#login-modal .return {
    display: block;
    position: absolute;
    width: 100%;
    height: 30px;
    text-align: center;
    bottom: -50px;
    left: 0;
}

#login-modal .return a, #login-modal .return a:link, #login-modal .return a:visited {
    color: #555d66;
    text-decoration: none;
    font-size: 14px;
}

#login-modal .edit-panel .form-group {
    margin: 0 0 1rem 0;
}

/**********************************
 *********** DATEPICKER ***********
 **********************************/

.datepicker-group {
    display: inline-block;
    position: relative;
    width: auto;
}

.datepicker-group .form-control {
    padding: .375rem 30px .375rem .75rem;
}

.datepicker-group .form-control:focus {
    border-color: #2b94e1;
}

.datepicker-group i {
    display: block;
    position: absolute;
    top: 9px;
    right: 12px;
    font-size: 16px;
    color: #333333;
    z-index: 10;
}

.datepicker-dropdown {
    font-family: 'Ubuntu', Helvetica, sans-serif;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
}

.datepicker-days {
    padding: 5px;
}
 
.datepicker td, .datepicker th {
    padding: 5px;
    font-size: 12px;
    border: 0 !important;
    border-radius: 2px !important;
}

.datepicker td.active {
    background: #108ee9 !important;
}

/**********************************
 ************ CKEDITOR ************
 **********************************/

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar, .ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable, .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.ck-powered-by {
    display: none !important;
}

.ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
    border-color: #80bdff;
}

.ck.ck-content ul,
.ck.ck-content ul li {
    list-style-type: disc;
}

.ck.ck-content ol,
.ck.ck-content ol li {
    list-style-type: decimal;
}

.ck.ck-content ul, .ck.ck-content ol {
    padding-left: 40px;
}

.ck-editor__editable {
    min-height: 150px !important;
}

/**********************************
 ************* HEADER *************
 **********************************/

header {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    height: 60px;
    background: #222d32;
}

header:before, header:after {
    display: table;
    clear: both;
    content: "";    
}

header #logo {
    display: block;
    float: left;
    position: relative;
    height: 60px;
    width: 15%;
    min-width: 250px;
    background-color: #1b2125;
    box-sizing: border-box;
    overflow: hidden;
}

header #logo:hover {
    background-color: #000000;
}

header #logo span {
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
    margin: 10px auto;
    background: url(../img/logo.png) no-repeat center center;
    background-size: contain;
    box-sizing: border-box;
}

header .navbar {
    display: block;
    float: right;
    margin: 0 15px 0 0;
    padding: 0;
}

header .navbar:before, header .navbar:after {
    display: table;
    clear: both;
    content: "";    
}

header .navbar .version {
    display: block;
    float: left;
    width: 100px;
    height: 60px;
    padding: 20px 0;
    color: #ffffff;
    font-size: 14px;
    text-align: right;
}

header .navbar .version-update {
    display: block;
    float: left;
    width: auto;
    height: 60px;
    padding: 14px 0 14px 25px;
    text-align: right;
    box-sizing: border-box;
    margin-right: -5px;
}

header .navbar .version-update:before, header .navbar .version-update:after {
    display: table;
    clear: both;
    content: "";
}

header .navbar .version-update .btn-update {
    display: inline-block;
    position: relative;
    width: auto;
    height: 32px;
    border: 1px solid #4fae33;
    background: #4fae33;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 29px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 10px;
    box-sizing: border-box;
}

header .navbar .version-update .btn-update:after {
    display: none;
}

header .navbar .version-update .btn-update:focus {
    box-shadow: 0 0 0 0.2rem #32643c;
}

header .navbar .version-update .btn-update i {
    margin-right: 5px;
    vertical-align: middle;
}

header .navbar .language-selector {
    display: block;
    float: left;
    width: 110px;
    height: 60px;
    padding: 14px 15px 14px 0;
    text-align: right;
    box-sizing: border-box;
}

header .navbar .language-selector .btn-language {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 32px;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 8px 0px 12px;
    box-sizing: border-box;
}

header .navbar .language-selector .btn-language:after {
    display: none;
}

header .navbar .language-selector .btn-language .icon-dropdown {
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    top: 10px;
    right: 12px;
    
}

header .navbar .language-selector .btn-language:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

header .navbar .language-selector .dropdown-item img {
    display: inline-block;
    vertical-align: sub;
    width: 20px;
    margin-right: 5px;
}

header .navbar .language-selector .dropdown-menu {
    margin-top: 16px;
}

header .navbar .chatgpt-selector {
    display: block;
    float: left;
    width: 170px;
    height: 60px;
    padding: 14px 15px 14px 0;
    text-align: right;
    box-sizing: border-box;
    margin-right: -25px;
}

header .navbar .chatgpt-selector .btn-chatgpt {
    display: inline-block;
    position: relative;
    width: 125px;
    height: 32px;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 8px 0px 12px;
    box-sizing: border-box;
}

header .navbar .chatgpt-selector .btn-chatgpt i {
    margin-right: 3px;
}

header .navbar .chatgpt-selector .btn-chatgpt:after {
    display: none;
}

header .navbar .chatgpt-selector .btn-chatgpt .icon-dropdown {
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    top: 10px;
    right: 12px;
    
}

header .navbar .chatgpt-selector .btn-chatgpt:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

header .navbar .seo-selector {
    display: block;
    float: left;
    width: 140px;
    height: 60px;
    padding: 14px 15px 14px 0;
    text-align: right;
    box-sizing: border-box;
    margin-right: -25px;
}

header .navbar .seo-selector .btn-seo {
    display: inline-block;
    position: relative;
    width: 95px;
    height: 32px;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 8px 0px 12px;
    box-sizing: border-box;
}

header .navbar .seo-selector .btn-seo i {
    margin-right: 3px;
}

header .navbar .seo-selector .btn-seo:after {
    display: none;
}

header .navbar .seo-selector .btn-seo .icon-dropdown {
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    top: 10px;
    right: 12px;
    
}

header .navbar .seo-selector .btn-seo:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

header .navbar .seo-selector .dropdown-item img {
    display: inline-block;
    vertical-align: sub;
    width: 20px;
    margin-right: 5px;
}

header .navbar .seo-selector .dropdown-menu {
    margin-top: 16px;
}

header .navbar .user-menu {
    display: block;
    float: left;
    position: relative;
    width: 200px;
    height: 60px;
    margin-left: 10px;
    box-sizing: border-box;
}

header .navbar .user-menu .dropdown {
    display: block;
    width: 100%;
    height: 100%;
}

header .navbar .user-menu .dropdown.show {
    background-color: #000000;
}

header .navbar .user-menu a, header .navbar .user-menu a:link, header .navbar .user-menu a:visited {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 10px;
    line-height: 18px;
    text-decoration: none;
    background-color: transparent;
    box-sizing: border-box;
}

header .navbar .user-menu a:hover {
    background-color: #000000;
}

header .navbar .user-menu a:after {
    display: none;
}

header .navbar .user-menu a img.user-image {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

header .navbar .user-menu a span {
    display: inline-block;
    font-size: 14px;
    padding-top: 11px;
}

header .navbar .user-menu ul.dropdown-menu {
    min-width: 160px;
    margin: 2px 0 0 0;
    padding: 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: .25rem;
    border-top-width: 0;
    width: 280px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 -2px 5px -2px rgba(0, 0, 0, 0.25);
    font-family: 'Ubuntu', Helvetica, sans-serif;
    overflow: hidden;
}

header .navbar .user-menu ul.dropdown-menu li.user-header {
    display: block;
    height: 175px;
    padding: 16px 10px;
    text-align: center;
    background-color: #000000;
    box-sizing: border-box;
}

header .navbar .user-menu ul.dropdown-menu li.user-header img {
    z-index: 5;
    height: 90px;
    width: 90px;
    border: 3px solid;
    border-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

header .navbar .user-menu ul.dropdown-menu li.user-header p {
    display: block;
    margin: 0 0 10px;
    z-index: 5;
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-top: 10px;
    box-sizing: border-box;
}

header .navbar .user-menu ul.dropdown-menu li.user-header p small {
    display: block;
    font-size: 12px;
}

header .navbar .user-menu ul.dropdown-menu li.user-body {
    background-color: #f9f9f9;
}

header .navbar .user-menu ul.dropdown-menu li.user-body div {
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

header .navbar .user-menu ul.dropdown-menu li.user-body div a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 16px;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    box-sizing: border-box;
}

header .navbar .user-menu ul.dropdown-menu li.user-body div a:hover {
    background-color: #ebebeb;
}

header .navbar .user-menu ul.dropdown-menu li.user-body div a i {
    display: block;
    position: absolute;
    right: 20px;
    top: 14px;
    color: #424242;
}

/**********************************
 ************ CONTAINER ***********
 **********************************/

#container {
    display: table;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

#container:before, #container:after {
    display: table;
    clear: both;
    content: "";
}

/**********************************
 ************** MENU **************
 **********************************/
 
#menu {
    display: table-cell;
    width: 15%;
    min-width: 250px;
    height: 100%;
    background: #eeeeee;
    border-right: 1px solid #cccccc;
    box-sizing: border-box;
}

#menu:before, #menu:after {
    display: table;
    clear: both;
    content: "";
}

#menu-switcher {
    display: block;
    width: 100%;
    height: 50px;
    background: #dbdbdb;
    border-bottom: 1px solid #cccccc;
    padding: 9px 20px;
    box-sizing: border-box;
}

#menu-switcher .btn-switcher {
    display: block;
    position: relative;
    width: 100%;
    height: 32px;
    border: 1px solid #a6b0b3;
    background: #ffffff;
    border-radius: 4px;
    color: #333333;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 0px 8px 0px 12px;
    box-sizing: border-box;
}

#menu-switcher .btn-switcher:after {
    display: none;
}

#menu-switcher .btn-switcher .icon-dropdown {
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    top: 10px;
    right: 12px;
    
}

#menu-switcher .btn-switcher:focus {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
}

#menu-content {
    display: block;
    clear: both;
    width: 100%;
}

#menu-content .dashboard {
    margin: 10px 0 -10px 0;
}

#menu-content .dashboard li a svg {
    display: block;
    position: relative;
    float: left;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

#menu-content .dashboard li a.selected svg path {
    fill: #ffffff;
}

#menu-content h3 {
    display: block;
    margin: 15px 0 0 0;
    padding: 5px 0 5px 20px;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}

#menu-content ul {
    display: block;
    clear: both;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu-content ul li {
    display: block;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

#menu-content ul li a, #menu-content ul li a:link, #menu-content ul li a:visited {
    display: block;
    position: relative;
    width: 100%;
    height: 36px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding: 8px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

#menu-content ul li a:hover {
    background-color: #dddddd;
}

#menu-content ul li a.selected {
    color: #ffffff;
    background-color: #00adf7;
}

#menu-content ul li a svg {
    display: none;
    position: absolute;
    width: 13px;
    height: 13px;
    top: 12px;
    right: 20px;
}

#menu-content ul li a svg path {
    fill: #999999;
}

#menu-content ul li a[aria-expanded="false"] .icon-down {
    display: block;
}

#menu-content ul li a[aria-expanded="true"] .icon-up {
    display: block;
}

#menu-content ul li > div ul {
    display: block;
    clear: both;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu-content ul li > div ul li {
    display: block;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

#menu-content ul li > div ul li a, #menu-content ul li > div ul li a:link, #menu-content ul li > div ul li a:visited {
    font-weight: 400;
}

/**********************************
 ************* CONTENT ************
 **********************************/

#content {
    display: table-cell;
    width: 85%;
    max-width: calc(100% - 250px);
    height: 100%;
    box-sizing: border-box;
}

#content:before, #content:after {
    display: table;
    clear: both;
    content: "";
}

#content .content-panel {
    display: inline-block;
    clear: both;
    margin: 10px 20px 80px 20px;
    padding: 20px;
    width: auto;
    min-width: 900px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#content .content-panel.max900 {
    max-width: 900px;
    box-sizing: border-box;
}

#content .content-panel.profile {
    min-width: 320px;
    max-width: 500px;
}

#content .content-panel hr {
    display: block;
    clear: both;
    width: calc(100% + 40px);
    height: 0.94px;
    border: none;
    background: #cccccc;
    padding: 0;
    margin: 5px 0 20px -20px;
}

#content .content-panel .edit-panel table tr td hr {
    margin-bottom: 0;
}

#content .content-panel .row.max-990 {
    max-width: 990px;
}

#content .content-panel .row.max-890 {
    max-width: 890px;
}

/**********************************
 ************* PROFILE ************
 **********************************/

.profile-header {
    display: block;
    text-align: center;
    padding: 10px 0 50px 0;
    margin: 0 0 10px 0;
}

.profile-header p {
    font-size: 16px;
    padding: 0 0 70px 0;
}

.profile-header img {
    display: block;
    position: absolute;
    width: 128px;
    height: 128px;
    left: calc(50% - 64px);
    top: 55px;
    border-radius: 50%;
    border: 3px solid #cccccc;    
}

.profile-header hr {
    width: calc(100% + 10px) !important;
    margin: 5px 0 20px -5px !important;
}

/**********************************
 *********** DASHBOARD ************
 **********************************/

#content .content-panel.dashboard {
    max-width: 900px;
    box-sizing: border-box;
}

#content .content-panel.dashboard .row {
    padding: 30px;
} 

#content .content-panel.dashboard p {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

#content .content-panel.dashboard h3 {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}

#content .content-panel.dashboard .menu-list, #content .content-panel.dashboard .menu-list:visited, #content .content-panel.dashboard .menu-list:link {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: #333;
    font-weight: bold;
    line-height: 38px;
    text-decoration: none;
    margin: 0 0 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#content .content-panel.dashboard .menu-list span {
    display: block;
    position: relative;
    float: left;
    width: 40px;
    height: 38px;
    margin-right: 10px;
    border-right: 1px solid #cccccc;
}

#content .content-panel.dashboard .menu-list span svg {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#content .content-panel.dashboard .menu-list svg path {
    fill: #cccccc;
}

#content .content-panel.dashboard .menu-list span i {
    display: block;
    position: absolute;
    width: 40px;
    height: 38px;
    line-height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 18px;
    text-align: center;
}

#content .content-panel.dashboard .menu-list:hover {
    border-color: #2b94e1;
}

#content .content-panel.dashboard .menu-list:hover span {
    border-color: #2b94e1;
}

#content .content-panel.dashboard .menu-list:hover span svg path {
    fill: #2b94e1;
}

#content .content-panel.dashboard .menu-list:focus {
    box-shadow: 0 0 0 0.2rem #c4e1ff;
}

/**********************************
 *********** BREADCRUMB ***********
 **********************************/

#breadcrumb {
    display: block;
    clear: both;
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
    border-bottom: 1px solid #cccccc;
    margin: 0 0 10px 0;
    padding: 14px 0 10px 25px;
    list-style-type: none;
    box-sizing: border-box;
    overflow: hidden;
}

#breadcrumb li {
    display: inline-block;
    box-sizing: border-box;
    color: #222;
    font-weight: 300;
}

#breadcrumb li .icon-right {
    margin: 0 8px;
    color: #999;
}

#breadcrumb li a, #breadcrumb li a:link, #breadcrumb li a:visited {
    color: #999;
    text-decoration: none;
}

#breadcrumb li a:hover {
    text-decoration: underline;
}

#breadcrumb li i {
    font-size: 12px;
    margin-right: 4px;
    vertical-align: middle;
}

/**********************************
 ********** FILTER PANEL **********
 **********************************/
 
form.filter-panel {
    display: block;
    clear: both;
    width: 960px;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid #cccccc;
    border-radius: 3px;
    margin: 0 0 25px 0;
    padding: 10px;
    font-size: 12px;
    box-sizing: border-box;
}

form.filter-panel .form-group {
    margin-bottom: 10px;
}

form.filter-panel .form-group label {
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
}

form.filter-panel .form-group input[type="text"],
form.filter-panel .form-group .dropdown .btn-select {
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    padding: 0px 20px 1px 7px;
    border-radius: 3px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #ced4da;
}

form.filter-panel .form-group .dropdown .btn-select .icon-dropdown {
    top: 7px;
    right: 7px;
}

form.filter-panel .dropdown-item {
    font-size: 12px;
    padding-bottom: 3px;
}

form.filter-panel .form-group .custom-checkbox {
    float: left;
    margin-right: 10px;
}

form.filter-panel .form-group .custom-checkbox label {
    font-size: 12px;
    line-height: 20px;
    margin-top: 2px;
}

form.filter-panel .dropdown .dropdown-menu .form-group {
    margin-bottom: 5px;
}

form.filter-panel .dropdown .dropdown-menu .form-group input[type="text"] {
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    padding: 0px 26px 1px 7px;
    border-radius: 3px;
    color: #333333;
}

form.filter-panel .dropdown .dropdown-menu .form-group svg {
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 8px;
    right: 8px;
}

form.filter-panel .datepicker-group i {
    top: 6px;
    right: 10px;
    font-size: 14px;
}

/**********************************
 ******* EDIT PANEL (FORM) ********
 **********************************/
 
.edit-panel {
    display: block;
    clear: both;
    width: 760px;
    min-width: 100%;
    max-width: 100%;
}

.content-panel.profile .edit-panel {
    width: auto;
}

body.popup .edit-panel {
    width: auto;
}

.edit-panel:before, .edit-panel:after {
    display: table;
    clear: both;
    content: "";
}

.edit-panel table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.edit-panel table tbody tr th {
    width: 140px;
    font-size: 12px;
    text-transform: uppercase;
    text-align: left;
    vertical-align: middle;
    padding: 0 10px 0 0;
}

.edit-panel table tbody tr td {
    padding: 5px 0px 5px 10px;
}

.edit-panel table tbody tr td.no-padding {
    padding: 0;
}

.edit-panel table tbody tr td .custom-checkbox {
    padding-top: 6px;
    padding-bottom: 7px;
}

.edit-panel table tbody tr td .dropdown-item .custom-checkbox {
    padding-top: 0px; 
    padding-bottom: 0px
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-add:focus~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-add:focus~.custom-control-label::before {
    border-color: #4fae33 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-add:checked~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-add:checked~.custom-control-label::before {
    border-color: #4fae33 !important;
    background-color: #4fae33 !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-add:focus:not(:checked)~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-add:focus:not(:checked)~.custom-control-label::before {
    border-color: #4fae33 !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-add:not(:disabled):active~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-add:not(:disabled):active~.custom-control-label::before {
    background-color: #d6f5dd !important;
    border-color: #d6f5dd !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-delete:focus~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-delete:focus~.custom-control-label::before {
    border-color: #e12b2b !important;
    box-shadow: 0 0 0 0.2rem rgba(225, 43, 43, 0.25) !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-delete:checked~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-delete:checked~.custom-control-label::before {
    border-color: #e12b2b !important;
    background-color: #e12b2b !important;
}

.edit-panel table thead tr th .custom-checkbox .custom-control-input-delete:focus:not(:checked)~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-delete:focus:not(:checked)~.custom-control-label::before {
    border-color: #e12b2b !important;
}
  
.edit-panel table thead tr th .custom-checkbox .custom-control-input-delete:not(:disabled):active~.custom-control-label::before,
.edit-panel table tbody tr td .custom-checkbox .custom-control-input-delete:not(:disabled):active~.custom-control-label::before {
    background-color: #f8ebeb !important;
    border-color: #f8ebeb !important;
}

.edit-panel table tbody tr td table.default-table {
    table-layout: fixed;
}

.edit-panel table tbody tr td table.default-table tr th {
    font-size: 12px;
    padding: 6px 10px 6px 10px;
}

.edit-panel table tbody tr td table.default-table tr td {
    font-size: 14px;
    padding: 8px 10px 8px 10px;
}

.edit-panel .translations {
    display: block;
    width: auto;
    padding: 5px 0 20px 1px;
}

.edit-panel .translations a {
    display: block;
    float: left;
    position: relative;
    width: 20px;
    margin-right: 10px;
    padding-top: 1px;
}

.edit-panel .translations a img {
    display: block;
    width: 20px;
    margin: 0;
    padding: 0;
}

.edit-panel .translations a.active:after {
    display: block;
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #adadad;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
}

.edit-panel .files-list {
    display: block;
    clear: both;
    width: 100%;
}

.edit-panel .files-list:before, .edit-panel .files-list:after {
    display: table;
    clear: both;
    content: "";
}

.edit-panel .files-list a.thumbnail {
    display: inline-block;
    position: relative;
    min-width: 68px;
    height: 110px;
    line-height: 110px;
    margin: 0 5px 10px 0;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.edit-panel .files-list a.thumbnail:not(:first-of-type):not(:last-of-type) {
    min-width: 98px;
}

.edit-panel .files-list a.thumbnail.file {
    min-width: 110px;
}

.edit-panel .files-list a.thumbnail:hover { 
    border-color: #2b94e1; 
}

.edit-panel .files-list a.thumbnail img { 
    display: inline-block;
    vertical-align: middle;
    max-height: 100px;
    margin-bottom: 13px;
    max-width: 100%;
}

.edit-panel .files-list a.thumbnail.file img {
    width: 45px;
    margin-left: -3px;
} 

.edit-panel .files-list a.thumbnail button { 
    display: block; 
    position: absolute; 
    opacity: 0; 
    top: 6px; 
    padding: 4px 6px; 
    line-height: 0; 
    width: 26px; 
    height: 26px; 
    color: #666;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #f6f7f7;
    vertical-align: middle; 
    -webkit-transition: all .2s ease-in-out; 
    -o-transition: all .2s ease-in-out; 
    transition: all .2s ease-in-out; 
}

.edit-panel .files-list a.thumbnail:hover button { 
    opacity: 1;
}

.edit-panel .files-list a.thumbnail:hover button:hover {
    background-color: #edeff0;
} 

.edit-panel .files-list a.thumbnail button.delete { 
    right: 64px; 
}

.edit-panel .files-list a.thumbnail button.prev { 
    right: 35px; 
}

.edit-panel .files-list a.thumbnail button.next { 
    right: 6px; 
}

.edit-panel .files-list a.thumbnail:first-of-type button.delete { 
    right: 35px; 
}

.edit-panel .files-list a.thumbnail:first-of-type button.prev { 
    display: none; 
}

.edit-panel .files-list a.thumbnail:last-of-type button.prev { 
    right: 6px; 
}

.edit-panel .files-list a.thumbnail:last-of-type button.delete { 
    right: 35px; 
}

.edit-panel .files-list a.thumbnail:last-of-type button.next { 
    display: none; 
}

.edit-panel .files-list a.thumbnail:first-of-type:last-of-type button.delete { 
    right: 6px; 
}

.edit-panel .files-list div.thumbnail-new {
    display: inline-block;
    position: relative;
    min-width: 110px;
    height: 110px;
    line-height: 110px;
    margin: 0 5px 10px 0;
    padding: 4px;
    background-color: #fff;
    border: 2px dashed #ced4da;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.edit-panel .files-list div.thumbnail-new i {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #ced4da;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.edit-panel .files-list div.thumbnail-new:hover { 
    border-color: #2b94e1; 
}

.edit-panel .files-list div.thumbnail-new:hover i { 
    color: #2b94e1; 
}

.edit-panel .help {
    display: block;
    width: 100%;
    margin-top: 5px;
}

.edit-panel .help i {
    margin-right: 5px;
}

.edit-panel .custom-file-upload input[type="file"] {
    display: none;
}

.edit-panel .custom-file-upload label {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.edit-panel .custom-file-upload label:hover {
    border-color: #2b94e1;
}

.edit-panel .custom-file-upload label:focus, .edit-panel .custom-file-upload label:active {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.edit-panel .switch {
    display: block;
    position: relative;
    margin: 0;
}

.edit-panel .switch input[type=checkbox] {
    display: inline;
    width: auto !important;
	height: 0;
	width: 0;
	visibility: hidden;
}

.edit-panel .switch label {
	cursor: pointer;
	text-indent: -9999px;
	width: 65px;
	height: 30px;
	background: #dd4b39;
	display: block;
	border-radius: 50px;
	position: relative;
}

.edit-panel .switch .label {
	display: none;
    position: absolute;
    color: #333;
    top: 27px;
    left: 75px;
    font-weight: bold;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}

.edit-panel .switch input:checked ~ .label {
	display: block;
}

.edit-panel .switch label:after {
	content: '';
	position: absolute;
	top: 2.5px;
	left: 4px;
	width: 28px;
	height: 24px;
	background: #fff;
	border-radius: 45px;
	transition: 0.3s;
}

.edit-panel .switch input:checked + label {
	background: #4fae33;
}

.edit-panel .switch input:checked + label:after {
	left: calc(100% - 4px);
	transform: translateX(-100%);
}

.edit-panel .switch label:active:after {
	width: 28px;
}

.edit-panel .img-preview {
    display: block;
    position: relative;
    min-height: 220px;
    padding: 0;
    margin: -10px 0 -10px 0;
    background: url(../img/img-bg.gif) repeat;
}

.edit-panel .img-preview.missing, .edit-panel .img-preview.file {
    background: #ffffff;
}

.edit-panel .img-preview.missing p {
    display: block;
    position: absolute;
    font-weight: bold;
    width: 100%;
    top: 45%;
    left: 0;
    font-size: 14px;
    text-align: center;   
}

.edit-panel .img-preview.uploading {
    background: #ffffff;
}

.edit-panel .img-preview #img-target {
    display: block;
    position: absolute;
    max-width: 100%;
    max-height: 200px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.edit-panel .img-preview.file #img-target {
    max-width: 100px;
}

.edit-panel .img-preview .jcrop-holder {
    display: block;
    position: absolute !important;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.edit-panel .img-preview #watermark-holder {
    display: block;
    position: absolute !important;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.edit-panel .img-preview #watermark-holder #watermark {
    display: block;
    position: absolute;
    max-width: 100%;
    height: auto;
    z-index: 2;
}

.edit-panel .img-preview #watermark-holder #watermark img {
    display: block;
    width: 100%;
    height: auto;
    cursor: move;
}

.edit-panel .img-preview i {
    display: block;
    position: absolute;
    font-size: 50px;
    width: 50px;
    height: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: rgb(109, 109, 109);
}

.edit-panel .form-group {
    margin: 0;
}

.edit-buttons .btn, .edit-buttons .btn:link, .edit-buttons .btn:visited {
    display: inline-block;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #f6f7f7;
    color: #666;
    padding: 0 14px;
    margin-left: 6px;
}

.edit-buttons .btn.inline {
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    line-height: calc(1.5em + .75rem + 2px);
}

.edit-buttons .btn:first-child {
    margin-left: 0px;
}

.edit-buttons .btn:hover {
    background-color: #edeff0;
}

.edit-buttons .btn:focus {
    box-shadow: 0 0 0 0.2rem #d8d9da;
}

.edit-buttons .btn i {
    margin-right: 5px;
}

.edit-buttons .btn.btn-delete, .edit-buttons .btn.btn-delete:link, .edit-buttons .btn.btn-delete:visited {
    background-color: #f8ebeb;
    color: #e12b2b;
    border: 1px solid #e12b2b;
}

.edit-buttons .btn.btn-delete:hover {
    background-color: #f8e3e3;
}

.edit-buttons .btn.btn-delete:focus {
    box-shadow: 0 0 0 0.2rem #f0a9b0;
}

.edit-buttons .btn.btn-add, .edit-buttons .btn.btn-add:link, .edit-buttons .btn.btn-add:visited {
    background-color: #4fae33;
    color: #ffffff;
    border: 1px solid #4fae33;
}

.edit-buttons .btn.btn-add:hover {
    background-color: #1b9200;
}

.edit-buttons .btn.btn-add:focus {
    box-shadow: 0 0 0 0.2rem #a3d9b0;
}

.edit-buttons .btn.btn-apply, .edit-buttons .btn.btn-apply:link, .edit-buttons .btn.btn-apply:visited {
    background-color: #f4fafd;
    color: #2b94e1;
    border: 1px solid #2b94e1;
}

.edit-buttons .btn.btn-apply:hover {
    background-color: #d5eaf9;
}

.edit-buttons .btn.btn-apply:focus {
    box-shadow: 0 0 0 0.2rem #d5eaf9;
}

.edit-buttons .btn.btn-right {
    float: right;
}

/**********************************
 ************* MODALS *************
 **********************************/
 
/*.modal-content.white-popup .edit-panel {
    min-height: 405px;
}*/
 
.modal-content.white-popup hr {
    display: block;
    clear: both;
    width: 100%;
    height: 1px;
    border: none;
    background: #cccccc;
    padding: 0;
    margin: 10px 0 10px 0;
}

.modal-content.white-popup .content {
    padding: 0px 15px;
    box-sizing: border-box; 
}

.modal-content #jcrop_coords {
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

/**********************************
 ************ DROPZONE ************
 **********************************/
 
.dropzone-uploader {
    min-height: 180px;
    padding: 20px 20px;
    border: 2px dashed #cccccc;
    border-radius: 5px;
    background: #ffffff;
    margin-top: 35px;
    cursor: pointer;
    box-sizing: border-box;
}

.dropzone-uploader:hover {
    border-color: #2b94e1;
}

.dropzone-uploader .dz-message {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    color: #333333;
    margin-top: -15px;
    padding-top: 70px;
    box-sizing: border-box;
}

.dropzone-uploader .dz-message:after {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "\f0ee";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 50px;
    color: #cccccc;
    text-align: center;
}

.dropzone-uploader .dz-message strong {
    display: block;
    clear: both;
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.dropzone-uploader .dz-message span {
    display: block;
    clear: both;
    width: 100%;
    text-align: center;
}

.dropzone-uploader .dz-message button {
    display: inline-block;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    border: 1px solid #2b94e1;
    border-radius: 3px;
    background-color: #d5eaf9;
    color: #2b94e1;
    padding: 0 10px;
    margin-top: 10px;
}

.dropzone-uploader .dz-message button:hover {
    background-color: #d5eaf9;
}

.dropzone-uploader .dz-message button:focus {
    box-shadow: 0 0 0 0.2rem #d5eaf9;
}

.dropzone-uploader.dz-started .dz-message {
    display: none;
}

.dropzone-uploader .dz-preview {
    display: block;
    position: relative;
    clear: both;
    width: 100%;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #f6f7f7;
    box-sizing: border-box;
    cursor: default;
    margin-bottom: 10px;
    overflow: hidden;
}

.dropzone-uploader .dz-preview .dz-image,
.dropzone-uploader .dz-preview .dz-success-mark,
.dropzone-uploader .dz-preview .dz-error-mark {
    display: none;
}

.dropzone-uploader .dz-preview .dz-details {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
}

.dropzone-uploader .dz-preview .dz-details .dz-filename {
    display: block;
    float: left;
    width: 90%;
    height: 100%;
    text-align: left;
    font-weight: 400;
    line-height: 38px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropzone-uploader .dz-preview.dz-success .dz-details .dz-filename {
    color: #4fae33;
}

.dropzone-uploader .dz-preview.dz-error .dz-details .dz-filename {
    color: #e12b2b;
}

.dropzone-uploader .dz-preview.dz-error .dz-error-message {
    display: block;
    position: absolute;
    background-color: #f6f7f7;
    width: 100%;
    height: 100%;
    color: #e12b2b;  
    padding: 0 10px;
    font-weight: 400;
    line-height: 38px;
}

.dropzone-uploader .dz-preview .dz-details .dz-size {
    display: block;
    float: right;
    width: 10%;
    height: 100%;
    text-align: right;
    font-weight: 400;
    line-height: 38px;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.dropzone-uploader .dz-preview .dz-progress {
    display: block;
    position: absolute;
    width: 80px;
    height: 2px;
    top: 18px;
    left: 70%;
    background-color: #edeff0;
}

.dropzone-uploader .dz-preview .dz-progress:before {
    display: block;
    position: absolute;
    content: "\f1ce";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    top: -10px;
    left: -20px;
    color: #237cbb;
    -webkit-animation: fa-spin 1s infinite linear;
    animation: fa-spin 1s infinite linear;
}

.dropzone-uploader .dz-preview .dz-progress .dz-upload {
    display: block;
    float: left;
    height: 2px;
    background: #2b94e1;
}

.dropzone-uploader .dz-preview.dz-complete .dz-progress {
    display: none;
}

.dropzone-uploader .dz-preview.dz-complete .dz-progress:before {
    display: none;
}

/**********************************
 ********** DEFAULT TABLE *********
 **********************************/

.default-table-container {
    width: 960px;
    min-width: 100%;
    max-width: 100%;
}

table.default-table {
    width: 100%;
    border-collapse: collapse;
    color: #333333;
}

table.default-table thead tr th {
    background-color: #ebebeb;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    padding: 10px 10px 10px 10px;
    font-size: 14px;
}

table.default-table thead tr th a, table.default-table thead tr th a:link, table.default-table thead tr th a:visited {
    color: #333333;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

table.default-table thead tr th a i {
    vertical-align: middle;
    margin-left: 3px;
}

table.default-table tbody tr td {
    background-color: initial;
    border-bottom: 1px solid #cccccc;
    padding: 10px 10px 10px 10px;
    font-size: 14px;
}

table.default-table tbody tr td i {
    font-size: 24px;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

table.default-table tbody tr td a i, table.default-table tbody tr td a:link i, table.default-table tbody tr td a:visited i {
    color: #333333;
}

table.default-table tbody tr td a:hover i, table.default-table tbody tr td a[aria-expanded="true"] i {
    color: #667073;
}

table.default-table tbody tr td .dropdown-toggle:after {
    display: none;
}

table.default-table tbody tr td a.toggle-active i, table.default-table tbody tr td a.toggle-active:link i, table.default-table tbody tr td a.toggle-active:visited i {
    font-size: 16px;
    color: #4fae33;
}

table.default-table tbody tr td a.toggle-active:hover i {
    color: #388f1f;
}

table.default-table tbody tr td a.toggle-active.not-active i, table.default-table tbody tr td a.toggle-active.not-active:link i, table.default-table tbody tr td a.toggle-active.not-active:visited i {
    color: #a7a7a7;
}

table.default-table tbody tr td a.toggle-active.not-active:hover i {
    color: #8b8b8b;
}

table.default-table tbody tr td form input {
    display: inline-block;
    width: 40px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    border: 1px solid #a6b0b3;
    border-radius: 3px;
    background: #ffffff;
    color: #333333;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    padding: 0 5px;
}

table.default-table tbody tr td form input:focus {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
}

table.default-table tbody tr td form a i, table.default-table tbody tr td form a:link i, table.default-table tbody tr td form a:visited i {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
}

.table-buttons .btn, .table-buttons .btn:link, .table-buttons .btn:visited {
    display: inline-block;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #f6f7f7;
    color: #666;
    padding: 0 10px;
    margin-left: 3px;
    text-align: left;
}

.table-buttons .btn:first-child {
    margin-left: 0px;
}

.table-buttons .btn:hover {
    background-color: #edeff0;
}

.table-buttons .btn:focus {
    box-shadow: 0 0 0 0.2rem #d8d9da;
}

.table-buttons .btn i {
    margin-right: 5px;
}

.table-buttons .btn.btn-delete, .table-buttons .btn.btn-delete:link, .table-buttons .btn.btn-delete:visited {
    background-color: #f8ebeb;
    color: #e12b2b;
    border: 1px solid #e12b2b;
}

.table-buttons .btn.btn-delete:hover {
    background-color: #f8e3e3;
}

.table-buttons .btn.btn-delete:focus {
    box-shadow: 0 0 0 0.2rem #f0a9b0;
}

.table-buttons .btn.btn-add, .table-buttons .btn.btn-add:link, .table-buttons .btn.btn-add:visited {
    background-color: #4fae33;
    color: #ffffff;
    border: 1px solid #4fae33;
}

.table-buttons .btn.btn-add:hover {
    background-color: #1b9200;
}

.table-buttons .btn.btn-add:focus {
    box-shadow: 0 0 0 0.2rem #a3d9b0;
}

.table-buttons .btn.btn-apply, .table-buttons .btn.btn-apply:link, .table-buttons .btn.btn-apply:visited {
    background-color: #f4fafd;
    color: #2b94e1;
    border: 1px solid #2b94e1;
}

.table-buttons .btn.btn-apply:hover {
    background-color: #d5eaf9;
}

.table-buttons .btn.btn-apply:focus {
    box-shadow: 0 0 0 0.2rem #d5eaf9;
}

.table-pagination input {
    display: inline-block;
    width: 40px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    border: 1px solid #a6b0b3;
    border-radius: 3px;
    background: #ffffff;
    color: #333333;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    padding: 0 5px;
    margin-left: 1px;
}

.table-pagination input:focus {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
}

/**********************************
 ***** DEFAULT TABLE > BLOCKS *****
 **********************************/

.default-table-container.blocks {
    width: 720px;
    min-width: 100%;
    max-width: 100%;
    margin: 10px 0 18px 0;
}

.default-table-container.blocks thead tr th {
    border: 1px solid #cccccc;
}

.default-table-container.blocks tbody tr td {
    border: 1px solid #cccccc;
}

.default-table-container.blocks tbody tr td .btn-blk {
    display: block;
    float: left;
    margin-bottom: 10px;
}

.default-table-container.blocks tbody tr td .btn {
    display: block;
    float: left;
    padding: 0 7px;
    margin: 0;
}

.default-table-container.blocks tbody tr td .btn.btn-delete {
    margin-left: 3px;
}

.default-table-container.blocks tbody tr td .btn i {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.default-table-container.blocks tbody tr td .btn.btn-delete i {
    color: #e12b2b;
}

/************************************
 ***** DEFAULT TABLE > VARIANTS *****
 ************************************/

.default-table-container.variants {
    width: 720px;
    min-width: 100%;
    max-width: 100%;
    margin: 10px 0 18px 0;
}

.default-table-container.variants thead tr th {
    border: 1px solid #cccccc;
}

.default-table-container.variants tbody tr td {
    border: 1px solid #cccccc;
}

.default-table-container.variants tbody tr td .start-separator {
    display: inline-block;
}

.default-table-container.variants tbody tr td .start-separator.x1 { width: 0px; }
.default-table-container.variants tbody tr td .start-separator.x2 { width: 30px; }
.default-table-container.variants tbody tr td .start-separator.x3 { width: 60px; }
.default-table-container.variants tbody tr td .start-separator.x4 { width: 90px; }
.default-table-container.variants tbody tr td .start-separator.x5 { width: 120px; }
.default-table-container.variants tbody tr td .start-separator.x6 { width: 150px; }
.default-table-container.variants tbody tr td .start-separator.x7 { width: 180px; }
.default-table-container.variants tbody tr td .start-separator.x8 { width: 210px; }
.default-table-container.variants tbody tr td .start-separator.x9 { width: 240px; }

.default-table-container.variants tbody tr td .inline-icon {
    text-align: left; 
    max-width: fit-content;
    font-size: 16px; 
    margin-right: 4px;
}

.default-table-container.variants tbody tr td .inline-separator {
    display: inline-block; 
    position: relative; 
    width: auto; 
    margin-left: 5px; 
    padding-left: 15px; 
}

.default-table-container.variants tbody tr td .inline-separator:after {
    display: block;
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    color: #cccccc;
    left: 0;
    top: 3px;
    margin: auto;
    font-size: 10px;
}

/**********************************
 ***** DEFAULT TABLE > ORDERS *****
 **********************************/

.default-table-container.orders {
    width: 1200px;
    max-width: 100% !important;
}

.default-table-container.orders tbody tr:hover {
    cursor: pointer;
    background-color: #f4fafd;
}

.default-table-container.order-detail table:not(:first-child) thead tr th {
    border-top: none;
}

.default-table-container.order-detail tbody tr td {
    vertical-align: top;
}

.default-table-container.order-total {
    margin: 40px 0 30px 0;
}

.default-table-container.order-total tr td {
    border: none;
}

/**********************************
 ***********  UPDATER  ************
 **********************************/

#content .content-panel.updater {
    max-width: 900px;
    box-sizing: border-box;
}

#content .content-panel.updater .row {
    padding: 30px;
} 

#content .content-panel.updater p {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

#content .content-panel.updater p.full-width {
    width: 100%;;
}

#content .content-panel.updater p.full-width i {
    float: right;
    font-size: 20px;
    margin-top: 2px;
}

#content .content-panel.updater ul {
    margin: 0 0 1em 3em;
}

#content .content-panel.updater ul li {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

#content .content-panel.updater h3 {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}

#content .content-panel.updater .btn-continue {
    display: inline-block;
    position: relative;
    width: auto;
    height: 32px;
    border: 1px solid #4fae33;
    background: #4fae33;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 29px;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    text-align: left;
    margin: 10px 0 0 0;
    padding: 0px 10px;
    box-sizing: border-box;
}

#content .content-panel.updater .btn-continue:after {
    display: none;
}

#content .content-panel.updater .btn-continue:focus {
    box-shadow: 0 0 0 0.2rem #a3d9b0;
}

#content .content-panel.updater .btn-continue i {
    vertical-align: middle;
    margin-left: 5px;
}

#content .content-panel.updater .steps {
    display: block;
    position: relative;
    clear: both;
    width: 80%;
    height: 2px;
    margin: 40px auto 70px auto;
    border-radius: 50%;
    background-color: #d1dce3;
}

#content .content-panel.updater .steps .step {
    display: block;
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    border-radius: 50%;
    background-color: #d1dce3;
    box-sizing: border-box;
}

#content .content-panel.updater .steps .step.visited {
    background-color: #4fae33;
} 

#content .content-panel.updater .steps .step:last-child {
    display: block;
    position: absolute;
    width: 26px;
    height: 26px;
    top: 0;
    right: 0;
    background-color: transparent;
}

#content .content-panel.updater .steps .step div:first-child {
    display: block;
    float: left;
    width: 26px;
    height: 26px;
    margin-top: calc(-1 * (26px / 2) + 2px);
    margin-left: calc();
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    background-color: #d1dce3;
    box-sizing: border-box;
}

#content .content-panel.updater .steps .step div:first-child i {
    font-size: 12px;
}

#content .content-panel.updater .steps .step:last-child div:first-child {
    float: right;
    margin-left: 0;
    margin-right: calc(-1 * (26px / 2) + 2px);
}

#content .content-panel.updater .steps .step.visited div:first-child,
#content .content-panel.updater .steps .step.active div:first-child {
    background-color: #4fae33;
}

#content .content-panel.updater .steps .step.error div:first-child {
    background-color: #bd0f0e;
}

#content .content-panel.updater .steps .step div:last-child {
    display: block;
    position: absolute;
    width: 140px;
    height: 50px;
    top: 25px;
    left: calc(-1 * (140px / 2) + (26px / 2));
    text-align: center;
    color: #d1dce3;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

#content .content-panel.updater .steps .step:last-child div:last-child {
    left: auto;
    right: calc(-1 * (140px / 2) + (26px / 10));
}

#content .content-panel.updater .steps .step.active div:last-child {
    color: #4fae33;
}

#content .content-panel.updater .steps .step.error div:last-child {
    color: #bd0f0e;
}

#content .content-panel.updater #action-log {
    display: block;
    clear: both;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

#content .content-panel.updater #action-log span {
    display: block;
    position: relative;
    width: 100%;
    color: #000;
    padding: 1px 0 1px 10px;
    background: url(img/arrow-action-log.png) no-repeat 0 55%;
    font-family: monospace;
}

#content .content-panel.updater #action-log > span:before {
    display: block;
    position: absolute;
    left: -6px;
    top: 5px;
    width: 11px;
    height: 11px;
    font-size: 11px;
    text-align: center;
    color: #333;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
}

#content .content-panel.updater #action-log span span.action-success {
    display: inline-block; 
    position: relative;
    width: auto;
    height: auto;
    color: #3c8800;
    font-weight: bold;
    padding-left: 15px;
}

#content .content-panel.updater #action-log span span.action-error { 
    display: inline-block; 
    position: relative;
    width: auto; 
    height: auto; 
    color: #bd0f0e; 
    font-weight: bold; 
    padding-left: 10px; 
}

#content .content-panel.updater #action-log span span.action-done { 
    display: inline-block; 
    position: relative;
    width: auto; 
    height: auto; 
    color: #3c8800; 
    font-weight: bold; 
    padding-left: 0px; 
    background: none; 
}

#content .content-panel.updater #action-log span > span:not(.action-done):after {
    display: block;
    position: absolute;
    left: 2px;
    top: 5px;
    width: 11px;
    height: 11px;
    font-size: 11px;
    text-align: center;
    color: #333;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
}

#content .content-panel.updater #action-log span i {
    font-weight: 700;
}

#content .content-panel.updater iframe { 
    display: none; 
}

/**********************************
 ********** UPDATE ALERT **********
 **********************************/

#update-alert {
    display: block;
    position: fixed;
    width: 600px;
    height: 143px;
    background: #ffffff url(../img/version.png) no-repeat 35px 10px / 100px;
    top: -143px;
    opacity: 0;
    left: 0;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.35);
    -webkit-box-shadow:0 0 15px rgba(0,0,0,0.35);
    box-shadow: 0 0 15px rgba(0,0,0,0.35);
    border: 1px solid #cccccc;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top: none;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    z-index: 999999999999999;
}

#update-alert p {
    padding: 0;
    margin: 1em 0 0 155px;
    font-size: 14px;
    max-width: 400px;
}

#update-alert p strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

#update-alert .btn, #update-alert .btn:link, #update-alert .btn:visited {
    display: inline-block;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #f6f7f7;
    color: #666;
    padding: 0 14px;
    margin-top: 12px;
    margin-left: 6px;
}

#update-alert .btn:first-of-type {
    margin-left: 155px;
}

#update-alert .btn:hover {
    background-color: #edeff0;
}

#update-alert .btn:focus {
    box-shadow: 0 0 0 0.2rem #d8d9da;
}

#update-alert .btn i {
    margin-right: 5px;
}

#update-alert .btn.btn-add, #update-alert .btn.btn-add:link, #update-alert .btn.btn-add:visited {
    background-color: #4fae33;
    color: #ffffff;
    border: 1px solid #4fae33;
}

#update-alert .btn.btn-add:hover {
    background-color: #1b9200;
}

#update-alert .btn.btn-add:focus {
    box-shadow: 0 0 0 0.2rem #a3d9b0;
}

/**********************************
 ************* IMPORT *************
 **********************************/

.edit-panel table tbody tr td table.import-table {
    table-layout: auto;
}

.edit-panel table tbody tr td table.import-table.import-table-fields {
    table-layout: fixed;
}

.edit-panel table tbody tr td table.import-table:not(.import-table-fields) tbody tr:first-child {
    background: #d4f3e4;
}

.edit-panel table tbody tr td table.import-table thead tr th,
.edit-panel table tbody tr td table.import-table tr th, 
.edit-panel table tbody tr td table.import-table tr td {
    font-size: 14px;
    padding: 8px 10px 8px 10px;
}

.edit-panel table tbody tr td table.import-table select {
    font-size: 14px;
    border-radius: 3px;
    color: #333333;
    height: 26px;
}

.edit-panel table tbody tr td table.import-table.import-table-fields select {
    float: right;
}

.edit-panel table tbody tr td table.import-table.import-table-fields thead tr th,
.edit-panel table tbody tr td table.import-table.import-table-fields tr th, 
.edit-panel table tbody tr td table.import-table.import-table-fields tr td {
    font-size: 12px;
}

.edit-panel table tbody tr td table.import-table.import-table-fields tr td i,
.edit-panel table tbody tr td table.import-table.import-table-fields tr td svg {
    font-size: 16px;
}

.edit-panel table tbody tr td table.import-table.import-table-fields tr td:first-child strong {
    display: block;
    max-width: 150px;
    text-transform: uppercase;
}

.edit-panel table tbody tr td table.import-table.import-table-fields tr td:first-child span {
    display: block;
    max-width: 150px;
    color: #999;
    text-transform: initial;
    white-space: pre-wrap;
}

/**********************************
 ************* CHATGPT ************
 **********************************/

#chatgpt-chat {
    display: block;
    margin: 15px -20px -5px -20px; 
    width: calc(100% + 40px); 
    background-color: #eeeeee; 
    border-top: 1px solid #cccccc;
    padding: 20px;
    box-sizing: border-box;
}

#chatgpt-chat .alert {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 460px;
    border: 0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 0 auto;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
}

#chatgpt-chat .chatgpt-message {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 460px;
    min-height: 75px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0.75rem;
    border-bottom-left-radius: 0;
    padding: 1.5rem;
    margin: 0 auto;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
}

#chatgpt-chat .chatgpt-message:before {
    display: block;
    position: absolute;
    content: "";
    background: url('../img/nur.png') no-repeat center center / 100%;
    width: 60px;
    height: 60px;
    bottom: 0;
    left: -65px;
}

#chatgpt-chat .chatgpt-message.assistant {
    background-color: #D8E8E4;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0;
}

#chatgpt-chat .chatgpt-message.assistant:before {
    background: url('../img/assistant.png') no-repeat center center / 100%;
    left: initial;
    right: -65px;
}

#chatgpt-chat .chatgpt-message.system {
    background-color: #e2e3e5;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0;
}

#chatgpt-chat .chatgpt-message.system:before {
    background: url('../img/system.png') no-repeat center center / 100%;
    left: initial;
    right: -65px;
}

#chatgpt-chat .chatgpt-message.function {
    background-color: #fffacd;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0;
}

#chatgpt-chat .chatgpt-message.function:before {
    background: url('../img/function.png') no-repeat center center / 100%;
    left: initial;
    right: -65px;
}

#chatgpt-chat .chatgpt-message > a.delete, #chatgpt-chat .chatgpt-message > a.delete:link, #chatgpt-chat .chatgpt-message > a.delete:visited {
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    text-decoration: none;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    color: #333333;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

#chatgpt-chat .chatgpt-message > div {
    display: block;
    clear: both;
    width: 100%;
}

#chatgpt-chat .chatgpt-message > div a, #chatgpt-chat .chatgpt-message > div a:link, #chatgpt-chat .chatgpt-message > div a:visited {
    color: #333333;
    text-decoration: underline;
}

#chatgpt-chat .chatgpt-message > div a:hover {
    text-decoration: none;
}

#chatgpt-chat .chatgpt-message > div > *:last-of-type {
    margin-bottom: 0;
}

#chatgpt-chat .chatgpt-message > div ul, #chatgpt-chat .chatgpt-message > div ol {
    margin-top: 15px;
    padding-left: 2rem;
}

#chatgpt-chat .chatgpt-message > div h2 {
    font-size: 1.4rem;
}

#chatgpt-chat .chatgpt-message > div h3 {
    font-size: 1.3rem;
}

#chatgpt-chat .chatgpt-message > div h4 {
    font-size: 1.2rem;
}

#chatgpt-chat .send-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 460px;
    min-height: 66px;
    background: #ffffff;
    border-radius: 0.75rem 0.75rem 0.75rem 0px;
    margin: 10px auto 0px auto;
    padding: 10px;
}

#chatgpt-chat .send-wrap.no-bottom-right-border {
    border-bottom-right-radius: 0px;
}

#chatgpt-chat .send-wrap textarea {
    border: 0;
    width: calc(100% - 60px);
    padding-left: 5px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    resize: none;
    overflow: hidden;
}

#chatgpt-chat .send-wrap .send-btn {
    background: #3078c2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    color: #ffffff;
    border: 0 !important;
    outline: 0 !important;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#chatgpt-chat .send-wrap .send-btn:hover {
    background: #6692be;
}

#chatgpt-chat .send-wrap .send-btn i {
    color: #ffffff;
    font-size: 18px;
    margin: 3px 0 0 -4px;
}

#chatgpt-chat .send-wrap + .role-selector {
    display: block;
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 0px 0px 0.75rem 0px;
    margin: 0px auto 0px auto;
    padding: 10px;
}