html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

section.samples {
    margin: 20px;
    padding: 20px;
    font-size: 24px;
}

section.samples .ms-Button, section.setup .ms-Button {
    display: block;
    margin-bottom: 5px;
    margin-left: 20px;
    min-width: 80px;
}

#popupApprove, #popupReject, #popupClientIdReject, #clientIdRejectSpan,
#resultsSection, #noTextSelected, #noOptionSelected, #noFileUpload, #noTranslationFound
,#loadingSpinner, #referenceTitleSection, #regionRejectSpan, #onlineStep, #keyCheckStep{
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #7e7d7d;
}
#clientIdRejectSpan {
    margin: 10px 0;
    color: red;
    font-size: 12px;
}

#regionRejectSpan {
    margin: 10px 0;
    color: red;
    font-size: 12px;
}

.popup-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(96 95 127 / 70%);
    position: absolute;
    top: 0;
    left: 0;
}

.popup {
    background-color: #ffffff;
    padding: 10px 15px;
    width: 65%;
    border-radius: 8px;
}

.popup.spinner {
    background-color: #ffffff80;
    width: 20%;
}

.close-popup {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-popup a {
    font-size: 1.2rem;
    background-color: #336799;
    color: #fff;
    padding: 1px 5px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
}

.popup > h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.popup > p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}


.card, .minicard {
    padding: 20px;
    border-radius: 8px;
    margin: 8px;
}

.card {
    box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
}

.card h3, .card p {
    text-align: left;
}

.card h3 {
    font-size: 16px;
    font-weight: bold;
}

.clientID > label {
    font-weight: bolder;
    margin-bottom: 5px;
    display: block;
}

.clientID > input {
    box-shadow: 0px 0px 2px 0px #5e5e5e;
    border: 0;
    border-radius: 2px;
    padding: 8px;
}

.rememberClientID {
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.rememberClientID > label {
    font-weight: 500;
}

.rememberClientID > input {
    width: 20px;
    font-size: 20px;
    height: 20px;
}

.clientIdActionButtons > button {
    border: 0;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.clientIdActionButtons > button.login {
    color: white;
    background-color: #4eb3c4;
    border: 2px solid #4eb3c4;
    margin-right: 10px;
}

.clientIdActionButtons > button.login:hover, .clientIdActionButtons > button.loginFree:hover {
    color: white;
    background-color: #003333;
}

.clientIdActionButtons > button.loginFree {
    color: #4eb3c4;
    background-color: white;
    border: 2px solid #4eb3c4;
}

.row {
    width: 100%;
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.row > .half {
    display: inline-block;
    flex: 50%;
}

.row > .third {
    display: inline-block;
}

.row > .third:nth-of-type(even) {
    width: 60px;
    text-align: center;
}

div.header {
    background-color: #333333;
    box-shadow: 2px 2px 2px #000;
    display: flex;
    align-content: center;
    justify-content: center;
}

div.header img {
    height: 85px;
}

.light {
    font-weight: 400;
}

.blue {
    color: deepskyblue;
    font-weight: bolder;
    cursor: pointer;
}

.tooltip, .tooltipInfo {
    border-radius: 25px;
    font-size: 11px;
    background-color: #adadad;
    color: white;
    padding: 2px 5px;
    position: relative;
    cursor: help;
}

.tooltip .tip-content, .tooltipInfo .tip-content {
    position: absolute;
    top: -40px;
    left: 20px;
    /* width: 200px;
    margin-right: -220px; */
    padding: 10px;
    color: #fff;
    background: #333;
    -webkit-box-shadow: 2px 2px 5px #aaa;
    -moz-box-shadow: 2px 2px 5px #aaa;
    box-shadow: 2px 2px 5px #aaa;
    opacity: 0;
    -webkit-transition: opacity 250ms ease-out;
    -moz-transition: opacity 250ms ease-out;
    -ms-transition: opacity 250ms ease-out;
    -o-transition: opacity 250ms ease-out;
    transition: opacity 250ms ease-out;
}

.tooltip .tip-content:before, .tooltipInfo .tip-content:before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: -16px;
    width: 0;
    height: 0;
    margin-top: -8px;
    border: 8px solid transparent;
    border-right-color: #333;
}

.tooltip:hover .tip-content, .tooltipInfo:hover .tip-content {
    opacity: 1;
}

.fileUploadButton, .fileUploadButton.enabled {
    border: 3px solid #4EB3C4;
    border-radius: 4px;
    padding: 4px 12px;
    font-weight: bolder;
    color: #4EB3C4;
    cursor: pointer;
}

.fileUploadButton.disabled {
    color: #B8E0E7;
    border: 3px solid #B8E0E7;
    cursor: no-drop;
}

h3 {
    font-weight: bolder;
}

.selectorCustom {
    min-width: 150px;
}

.regionCustom {
    min-width: 178px;
    border: 0 !important;
    box-shadow: 0px 0px 2px 0px #5e5e5e;
    border-radius: 2px;
    margin: 0;
}


@media (max-width: 410px) {
    .row.rowBlock{
        display: block;
    }
}

/*EXTRA STEPS FOR PUBLISH*/
#keyCheckStep, #introStepTwo {
    display: none;
}
#introStepOne div.logo, #introStepTwo div.logo {
    text-align: center;
    padding:24px
}
#introStepOne .card, #introStepTwo .card {
    border-radius: 0;
    background-color: #4eb3c4 !important;
    margin: 0;
    color: white;
}
#introStepOne h3, #introStepTwo h3 {
    color: white;
    text-align: center;
    font-size: 1.875rem;
}
.introStepButton {
    border: 3px solid #4EB3C4;
    background: #4EB3C4;
    border-radius: 4px;
    padding: 8px 18px;
    font-weight: bolder;
    font-size: 16px;
    color: white;
    cursor: pointer;
}
p.clientID > label.requiredField::after {
    content: "*";
    color: red;
}
div.newAccount {
    margin-top: 1rem;
}
div.newAccount .p1 {
    color: #98a6ad;
    font-size: 14px;
}
div.newAccount .p1 a {
    color: #4eb3c4;
    text-decoration: none;
    background-color: transparent;
}
.subtitle {
    color: #98a6ad;
    font-size: 14px;
    margin-top: -10px;
}
.clientIdActionButtons {
    margin-top: 2rem;
    text-align: left !important;
}

.sideNavOpenSpan{
    font-size:30px;
    cursor:pointer;
    margin: 1rem 0;    
    width: 20px;
  height: 20px;
  position: absolute;
  left: 25px;
  color: white;
  top: 5px;
}