﻿.circle-wrap .circle {
    display: inline-block;
    width: 35%;
    padding-bottom: 35%;
    background-size: 100%;
    border-radius: 50%;
    float: left;
    shape-outside: circle();
    margin: 30px 30px 30px 0;
    background-repeat: no-repeat;
}
.circle-wrap.right .circle {
    float: right;
    margin: 30px 0 30px 30px;
}
.circle-wrap {
    display:inline-block;
    padding-top: 20px;
    width: 100%;
}
.circle-wrap:last-of-type {
    padding-bottom: 20px;
}
.circle-wrap p {
    margin: 0;
    padding: 0;
    text-align:justify;
    line-height: 22px;
}
.circle-wrap h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.circle-wrap.right h2 {
    text-align: right;
}


.dssell-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.dssell-checkbox i {
    color:#999;
}
.dssell-checkbox i.lit {
    color:#F57C00;
}
.dssell-checkbox * {
    padding: 3px;
}
.dssell-checkbox.disabled span {
    text-decoration: line-through;
}

.dssell-input-container {
    position:relative;
    height:auto;
    min-height:40px;
    margin: 10px 0;
    outline: none;
}
.dssell-input-container .clear-input {
    position: absolute;
    right: 1px;
    top: 13px;
    color: #ff3b3b;
    cursor: pointer;
    display: none;
}

.dssell-input-container.error input, .dssell-input-container.error > select, .dssell-input-container.error > textarea {
    background-color: #fbd2d2;
    border-color: red;
}

.dssell-input-container.disabled > input, .dssell-input-container.disabled > select, .dssell-input-container.disabled > textarea {
    background-color: #ddd;
    border-color: #888;
}

.dssell-input-container.has-value:not(.disabled) .clear-input {
    display: block;
}
.dssell-input-container label, .dssell-input-container label:hover {
    color:inherit;
    cursor: text;
    position:absolute;
    left: 7px;
    top: 10px;
    font-size: 20px;
    font-weight: normal;
}
.dssell-input-container:focus-within label,.dssell-input-container.has-value label {
    position:absolute;
    cursor: default;
    left: 2px;
    top: 0px;
    font-size: 12px;
    font-weight: bold;
}
.dssell-input-container input, .dssell-input-container select{
    font-size: 24px;
    width: 100%;
    height: 100%;
    min-height:40px;
    padding: 13px 8px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #2196f3;
    letter-spacing: 0.8px;
    word-spacing: 2px;
}
.dssell-input-container textarea, .dssell-input-container textarea:hover {
    border: none;
    border-bottom: 2px solid #2196f3;
    font-size: 24px;
    width: 100%;
    height: auto;
    padding: 13px 8px 0;
    font-size: 16px;
    outline:none;
    resize: none;
    letter-spacing: 0.8px;
    word-spacing: 2px;
}
.dssell-input-container:focus-within textarea,.dssell-input-container.has-value textarea {
}

.dssell-select-list-wrap {
    color:black;
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 200;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0px 2px 10px -4px #333;
    padding-bottom: 10px;
    border-radius: 0 0 8px 8px;
}
.dssell-select-list {
    max-height: 220px;
    overflow-y: auto;
}
.dssell-select-list-item {
    cursor: pointer;
    padding: 12px 8px;
    position: relative;
}
.dssell-select-list-item:hover,.dssell-select-list-item.hover {
    background-color: #0691ff;
    color: #fff;
}
.dssell-select-list-item > span {
    color:inherit;
    position: absolute;
    right: 25px;
    top: 13px;
    background-color: inherit;
    font-weight: bold;
}

.dssell-tabs-wrap {
    height: 100%;
    overflow: hidden;
    width:100%;
}

hr {
    width: 100%;
    margin: 5px 0;
    border-color: #333;
    padding: 0!important;
}
.m0 { margin: 0; } .mb0 {margin-bottom: 0} .mb15 {margin:0 0 15px 0;} .mr15 {margin-right: 15px;} .mr25 {margin-right: 25px;}

.modern-table {
    box-shadow: 0px 3px 4px -3px #333;
    max-height: calc(100% - 65px);
    display: grid; /* This is a (hacky) way to make the .grid element size to fit its content */
    overflow: auto;
    height: 650px;
    width: 100%;
}

.modern-table .grid {
    display: flex;
    flex-wrap: nowrap;
}
    
.modern-table .grid-col {

}
.grid-item--header {
    z-index: 100;
}
.modern-table .grid-col:first-of-type {
    font-weight: bold;
}

.modern-table .grid-col:first-of-type .grid-item--header {
    box-shadow: inset -7px 0 9px -7px rgba(0,0,0,1);
}

.modern-table .grid-col--fixed-left  {
    position: sticky;
    left: 0;
    background: white;
    z-index: 101;
}

.modern-table .grid-col--fixed-left .grid-item {
    border-right: 1px solid gray;
}

.modern-table .grid-col--fixed-right {
    position: sticky;
    right: 0;
    background: white;
}

.modern-table .grid-item {
    height: 50px;
    padding: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.modern-table .grid-item:not(:last-of-type) {
    border-bottom: 1px solid gray;
}

.modern-table .grid-item--header {
    height: 50px;
    padding: 13px;
    position: sticky;
    position: -webkit-sticky;
    background: white;
    top: 0;
    font-weight: bold;
    background-color: #40C4FF;
    border-bottom: none;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    z-index: 100;
}

.modern-table .grid-item--header.active {
    border-bottom: 4px solid #F57C00;
}