body {
    background: radial-gradient(circle, rgba(214, 223, 232, 1) 0%, rgba(53, 171, 200, 1) 100%);
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.4px;
    min-width: 1200px;
    max-width: 1800px;
    padding: 10px;
    margin: auto;
}

.authorization_form {
    width: 500px;
    position: relative;
    padding: 1em 3em 2em 3em;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
    margin: auto;
    margin-top: 50px;
}

.form_input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    font-size: 16px;
    outline: none;
    background-color: white;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.10) inset;
}

textarea.form_input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    /*box-sizing: border-box;*/
    font-family: montserrat;
    font-size: 16px;
    outline: none;
    resize: vertical;
    min-height: 80px;
    max-height: 180px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.10) inset;
}


/* Change the white to any color */
input:-webkit-autofill::first-line,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form_input:hover:not([disabled]) {
    box-shadow: 0px 0px 15px -2px rgb(197, 240, 255), 1px 1px 3px 0px rgba(0,0,0,0.10) inset;
}


.form_input_error {
    border: 1px solid red;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    font-size: 16px;
    outline: none;
}

 a {
    color: #0233ad;
     text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

.data_column{
    width:50%;
    display:inline-block;
    height:70px;
}

.data_label {
    font-weight:600;
    font-size:14px;
}

.data_value {
    font-size:22px;
}

ul {
    margin:0px;
    padding-left:15px;
}

li {
    padding:10px;
}

.form_button {
    font-size:18px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 10px;
    background-color: #36AECB;
    border: 1px solid transparent;
    box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset, rgba(0,0,0,0.25) 1px 1px 3px 0px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    display:inline-block;
    text-shadow: rgba(0,0,0,0.25) 1px 1px 2px;
}

.form_button_disabled {
    font-size:18px;
    padding: 10px 15px;
    text-align: center;
    border-radius: 10px;
    background-color: #c5c5c5;
    border: 1px solid transparent;
    box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset, rgba(0,0,0,0.25) 1px 1px 3px 0px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    display:inline-block;
    text-shadow: rgba(0,0,0,0.25) 1px 1px 2px;
}

.form_button:hover {
    background-color: rgba(0, 124, 141, 0.75);
}

.form_button:active {
    background-color: rgba(0, 72, 84, 0.75);
}


.logo_buttons {
    width: 120px;
    background: white;
    color: #334A52;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 7px;
    margin-right: 7px;
    font-size: 16px;

}

.logo_buttons:hover {
    font-weight: bold;
}

.logo {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
    padding: 5px;
    display: flex;
    margin-bottom: -11px;
    z-index: 2;
    position: relative;
    vertical-align: center;
    text-align: center;
}

.logo_column {
    flex: 50%;
    align-items: center;
    display: flex;
}

.logo_title {
    padding-left: 15px;
}

.logo_logon {
    text-align: right;
    color: lightgrey;
    text-shadow: white 0.05em 0.05em;
    font-weight: 600;
    padding-right: 15px;
}

.logo_name {
    margin-right: 10px;
    padding-left: 5px;
    font-size: 18px;
    color: #d9d9d9;
    text-shadow: white 0.05em 0.05em;
}

.logo_pagename {
    clear: both;
    margin-top: 20px;
    font-size: 28px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 5px;
}

.menu_page {
    background-color: #FFE9CF;
    /*border: 2px solid white;*/
    border-radius: 10px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    margin-left: 15px;
    margin-right: -12px;
    display: inline-block;
    z-index: 1;
    position: relative;
    color: #000000;
    padding: 18px 15px 9px 15px;
}


.menu_page:hover {
    background-color: #ffd79b;
}


.menu_thispage {
    background-color: #334A52;
    /*border: 2px solid white;*/
    border-radius: 10px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    margin-left: 15px;
    margin-right: -12px;
    display: inline-block;
    z-index: 1;
    position: relative;
    color: white;
    padding: 18px 15px 9px 15px;
    font-weight: 600;
}

.menu_thispage:hover {
    /*background-color: #484848;*/
    background-color: rgba(51, 74, 82, 0.75);
}

.window {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: block;
    margin-bottom: -11px;
    z-index: 2;
    position: relative;
}

.window_column1 {
    width:100%;
    display:inline-block;
    text-align: right;
    position:absolute;
    margin-left:-30px;
    margin-top:-60px;
    margin-bottom:30px;
}

.window_column2 {
    width: 100%;
}

.subpage_menu {
    font-size: 18px;
    margin-right: 10px;
    padding: 10px;
    display: inline-block;
    /*border: 2px solid #c8e4e8;*/
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
    user-select: none;
    /*box-shadow: 0px 0px 0px 2px white inset;*/
    background-color: rgba(255,255,255,0.5);
    /*#e5f8f8;*/
    /*z-index: -100;*/
}

.subpage_menu:hover {
    background-color: rgba(255,255,255,0.75);
}

.subpage_menu_selected {
    background-color: white;
    font-weight: 600;
    font-size: 18px;
    margin-right: 10px;
    padding: 10px;
    display: inline-block;
    /*border: 2px solid #c8e4e8;*/
    border-radius: 10px 10px 0px 0px;
    /*box-shadow: 0px 0px 0px 2px white inset;*/
    user-select: none;
}

.upload_image {
    border: 1px rgba(0, 0, 0, 0.25) solid;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.25);
    display:inline-block;
    margin-right:4px;
    z-index:997;
    cursor:pointer;
    margin-bottom:3px;
}

.thumbnail{
    margin-top:9px;
    margin-right:6px;
    display:inline-block;
    margin-bottom:-3px;
    border-radius: 10px;
}

.remove_thumbnail {
    cursor: pointer;
    position: absolute;
    margin-left:41px;
    margin-top: 2px;
}

.remove_thumbnail img {
    width: 16px;
    height: 16px;
}

.remove_thumbnail img:hover{
    width: 17px;
    height: 17px;
}

.popup-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    /*padding: 20px;*/
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    /*display: flex;*/
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    box-shadow: 0px 3px 10px -2px rgb(0, 0, 0);
}

.popup-title {
    /*margin: 15px;*/
    margin-bottom: 15px;
    line-height: 1.0;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
}

.popup-content {
    position: relative;
    margin: 30px 0px 0px 0px;
    padding: 0;
    text-align: left;
    font-size: 16px;
}

.cancelPopup img{
    cursor: pointer;
    left:100%;
    position: absolute;
    /*border: 1px solid rgba(255, 255, 255, 0.75);*/
    width: 15px;
    height: 15px;
    margin-left:-35px;
    margin-top:-15px;
    /*background-color: red;*/
    /*background-image: url('/images/cancel.svg');*/
    /*border-radius: 999px;*/
    /*margin-top: -10px;*/
    /*margin-bottom: -100px;*/
    /*overflow: hidden;*/
}

.progress {
    margin-top: 5px;
    margin-bottom: 0px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(16, 16, 16, 0.1);
    justify-content: flex-start;
    border-radius: 10px;
    align-items: center;
    position: relative;
    padding: 0 0x;
    display: flex;
    height: 40px;
}

.progress_bar {

    transition: width 2s;
    animation: load 3s normal forwards;
    box-shadow: 0 10px 40px -10px #4b4b4b;
    border-radius: 5px;
    background: rgba(0, 47, 68, 0.75);
    height: 30px;
    margin:5px;
    width: 1%;
}

#progress_text {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

#progress_icon {
    width: 100%;
    text-align: center;
    margin-bottom: -5px;
}

#progress_icon img {
    transform: scale(0.5);
}

#signingProcess {
    /*margin-top: -15px;*/
    font-size: 16px;
    margin: auto;
    display: block;
}

#signingProcess img {
    transform: scale(0.5);
}

.popup-overlay {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

.form_radio_btn {
    display: inline-block;
    margin-right: 10px;
}

input[type=radio] {
    display: none;
}


.form_radio_btn label {
    font-size: 18px;
    display: block;
    cursor: pointer;
    padding: 0px 15px;
    line-height: 34px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    user-select: none;
}

.form_radio_btn input[type=radio]:checked + label {
    background: rgba(194, 229, 234, 0.75);
    border: 1px solid #666;
}

.form_radio_btn label:not(:disabled) :hover {
    color: #666;
}

.checkbox_input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox_input + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-size: 16px;
}

.checkbox_input + label::before {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 130% 130%;
    background-image: url('/images/check-box-empty.svg');
}

.checkbox_input:disabled + label::before {
    background-image: url('/images/check-box-empty-disabled.svg');
}


.checkbox_input:checked + label::before {
    background-image: url('/images/check-box-4.svg');
}

fieldset {
    border-radius: 15px;
    font-size: 18px;
    border-color: #bdcfda;
    border-style: solid;
    border-width: 2px;
    padding: 20px;
    margin-top: 30px;
}

legend {

    padding-left: 5px;
    padding-right: 5px;
    color: #62b3c5;
    margin-bottom: -30px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    justify-content: left;
    text-align:left;
    background: linear-gradient(145deg, rgba(53, 171, 200, 1) 0%, rgba(79, 191, 133, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    letter-spacing: -3px;
    margin:0px 0px -10px 0px;
}

h2 {
    font-weight: 200;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    justify-content: left;
    text-align:left;
    background: linear-gradient(145deg, rgba(53, 171, 200, 1) 0%, rgba(79, 191, 133, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin: 0px 0px 5px 0px;
    letter-spacing: -0.04em;
    word-spacing: 2px;
}

h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top:35px;
    margin-bottom: -20px;
    /*background: linear-gradient(145deg, rgba(53, 171, 200, 1) 0%, rgba(79, 191, 133, 1) 100%);*/
    color: #989898;
    /*-webkit-background-clip: text;*/
    /*background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*text-fill-color: transparent;*/
}

h6 {
    font-weight: normal;
    margin: 0;
}

img {
    border: 0;
}



th {
    font-weight: normal;
    font-size: 14px;
    padding-bottom:10px;
}

tr {
    text-align: center;
}


 .maxwatt_table p {
     font-size: 10px;
     font-weight: 600;
     padding: 5px;
 }

    .maxwatt_table, .maxwatt_table tr {
        border: 0;
        margin: 0;
        padding: 0;
        font-size: 14px;
    }

.maxwatt_table input {
    /*border: 1px solid white;*/
    border:0;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
    background-color: #F8F8F8;
    color: #1a748a;
}

.maxwatt_table input::placeholder {
    color: #b2b2b2;
}

.maxwatt_table td {
    /*box-shadow: 1px 0px 0px 0px white inset, 0px 1px 0px 0px white inset, -1px 0px 0px 0px white inset, 0px -1px 0px 0px white inset;*/
    /*background-color: #eef5f8;*/
   background-color:  #e0eaee;
    border: 0;
    margin: 0px;
    padding: 0;
    font-size: 14px;
    box-sizing: border-box;
}



.watt_volt_extended_subtable {
    border: 0;
    font-size: 14px;
    margin: 0;
    padding: 0;
}


.request_row {
    background-color: #f1f1f1;
}

.request_row:hover {
    background-color: #ccecf3;
    cursor:pointer;
}

.request_row:active {
    background-color: #b4e5ef;
}

a {
    color: #36AECB;
    font-weight:600;
}

a:hover {
    color: #1a748a;
    text-decoration: none;
}

p {
    margin:0px;
}

.elem {
    transition: all 0.15s linear;
}

.elem_transform {
    transform: rotate(90deg);
}


.info_header {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: none;
    box-shadow: 0px 0px 2px #c4a87d;
    /*background-color: rgb(246, 245, 245);*/
}

.info_header_legend {
    background-color:#FFE9CF;
    margin-bottom: -1px;
    border-radius: 0 10px 10px 0;
    padding: 0.6rem;
    font-size: 16px;
    color: #000000;
    /*text-shadow: rgba(0,0,0,0.25) 1px 1px 2px;;*/
    transform: translateX(-1.5rem);
    box-shadow: -1px 1px 0px #c4a87d;
}

.info_header_legend:after {
    content: "";
    height: 0;
    width:0;
    background-color: transparent;
    border-top: 0.0rem solid transparent;
    border-right:  0.35rem solid #c4a87d;
    border-bottom: 0.45rem solid transparent;
    border-left: 0.0rem solid transparent;
    position:absolute;
    left:-0.075rem;
    bottom: -0.45rem;
}