@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text: #444343;
    --text-light: #a6a4a4;
    --warning: #e75050;
    --success: #48d12a;
    --border: #e1e0e0;
}

html {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}

body {
    margin: 0;
}

#nojavascript,
#nocookie {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    text-align: center;
    font-size: 30px;
    color: var(--warning);
    line-height: 120%;
}

#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    visibility: hidden;
}

#top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 10;
    padding-bottom: 10px;
}

#logo {
    position: fixed;
    top: 16px;
    left: 20px;
}

#name {
    position: fixed;
    top: 23px;
    left: 78px;
}

#switchTestMode {
    position: fixed;
    top: 22px;
    left: 250px;
    padding: 3px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.testmodeon {
    background-color: bisque;
}

.testmodeon:hover {
    background-color: burlywood;
}

.testmodeoff {
    background-color: crimson;
    color: white;
}

.testmodeoff:hover {
    background-color: rgb(142, 15, 41);
}

#connect {
    position: fixed;
    top: 20px;
    right: 20px;
}

.connect,
.connected {
    background-color: antiquewhite;
    padding: 3px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.connected {
    background-color: aquamarine;
    cursor: auto;
}

.connect:hover {
    background-color: aquamarine;
}

#monitor {
    min-height: 50px;
    text-align: center;
}

input[type=text],
textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e7e7df;
    padding: 10px;
    font-size: 20px;
    margin-top: 10px;
    outline: none;
    transition-duration: 1s;
}

input[type=text]:focus,
textarea:focus {
    outline: none;
    border: 1px solid #757433;
    background-color: blanchedalmond;
    transition-duration: 1s;
}

#topdata {
    padding: 90px 20px 0 300px;
    width: 100%;
    background-color: white;
}

#operations {
    padding: 270px 20px 0 300px;
}

#sidebar {
    position: fixed;
    top: 300px;
    left: 0;
    background-color: #f1f1f1;
    width: 280px;
    height: 100%;
    border-radius: 0 10px 0 0;
    overflow-y: scroll;
}

.sidebar {
    background-color: aquamarine;
    margin: 10px;
    border-radius: 5px;
    padding: 1px 10px;
    font-size: 16px;
    text-align: right;
}

.sidebar:hover {
    cursor: pointer;
    background-color: rgb(160, 235, 210);
}

.warning {
    color: var(--warning);
}

.success {
    color: var(--success);
}

.light {
    color: var(--text-light);
}

.link {
    cursor: pointer;
    text-decoration: underline;
}

.link:hover {
    color: var(--text);
}

button {
    font-family: 'Montserrat', sans-serif;
    padding: 10px 30px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    background-color: darkseagreen;
    color: white;
}

button:hover {
    background-color: darkcyan;
    cursor: pointer;
}

.little-button,
.little-button-selected,
.little-button-disabled {
    background-color: darkorange;
    margin: 10px;
    display: inline-block;
    padding: 1px 20px;
    border-radius: 5px;
    border: 1px solid var(--border);
    color: white;
}

.little-button-selected {
    background-color: aliceblue;
    color: var(--text-light);
}

.little-button-disabled {
    background-color: #f6fba5;
    color: var(--warning);
    border: 1px solid var(--warning);
}

.little-button:hover {
    cursor: pointer;
    background-color: crimson;
}

.authorization {
    margin: 20px 0;
    border: 1px solid var(--border);
    padding: 10px;
    overflow: auto;
}

.apiname {
    font-weight: bold;
}

.set {
    background-color: darkorange;
}

.set:hover {
    background-color: crimson;
}

.mini {
    padding: 5px 20px;
    background-color: #fbf533;
    font-size: 15px;
    color: var(--text);
}

.mini:hover {
    background-color: #f1eb32;
}

.specialoffer {
    margin: 10px 0;
}

.feature {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.feature-title {
    background-color: aquamarine;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

h1 {
    padding-bottom: 20px;
}

.section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sub-section {
    margin-bottom: 70px;
}

.block {
    margin-top: 20px;
}

#company_data {
    margin-top: 10px;
}

#lastinvoice,
#invoices,
#serviced,
#paymentget,
#special,
#special_offer {
    margin-top: 10px;
}

.invoice {
    margin: 20px 0 0 0;
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 10px;
}

.loading {
    width: 25px;
    vertical-align: bottom;
}