body {
   background: #f7fafc;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 90vh;
}

.loading-background {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 9900;
   min-width: 100vw;
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(255, 255, 255, 0.9);
}

.loading-background::after {
   position: absolute;
   min-width: 100vw;
   min-height: 100vh;
   content: 'loading';
   color: transparent;
   backdrop-filter: blur(4px);
   z-index: 9901;
}

.loading-background > div {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   z-index: 9902;
}

.loading-background > div > span {
   margin-top: 24px;
   font-size: 28px;
}

.main-wrapper {
   background: #fff;
   padding: 30px;
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06) !important;
   width: 100%;
   max-width: 600px;
}

button {
   background-color: #4299e1 !important;
   color: #fff !important;
   padding-left: 2.75rem !important;
   padding-right: 2.75rem !important;
   padding-top: .75rem !important;
   padding-bottom: .75rem !important;
   font-weight: 700 !important;
   border-bottom-width: 4px !important;
   border-radius: .25rem !important;
   border-color: #2b6cb0 !important;
   cursor: pointer;
   background-image: none;
   border-top: none;
   border-left: none;
   border-right: none;
   font-size: 16px;
   margin: 15px 0;
}

button:hover {
   background: #63b3ed !important;
}

.desc {
   margin: 10px 0;
   color: #a0aec0 !important;
}

input[type="text"],
textarea {
   color: #4a5568;
   font-size: 16px;
   padding-left: 1rem !important;
   padding-right: 1rem !important;
   padding-top: .5rem !important;
   padding-bottom: .5rem !important;
   line-height: 1.5 !important;
   display: block !important;
   border-width: 1px !important;
   border-radius: .5rem !important;
   outline: none;
   border-color: #e2e8f0 !important;
   background-color: #fff !important;
   border: 0 solid #e2e8f0;
   width: 93%;
   max-width: 93%;
   min-width: 93%;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input:focus,
textarea:focus {
   border-color: #a0ccf0 !important;
}

input[type="checkbox"] {
   margin: 10px 0;
}

.input-label {
   margin: 10px 0;
}

.helper {
   color: #cbd5e0;
   margin: 0 3px;
}

#tooltip {
   background: #fff;
   /*#333*/
   color: black;
   font-weight: bold;
   padding: 4px 8px;
   font-size: 13px;
   border-radius: 4px;
   position: absolute;
   top: -9000px;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01), 0 10px 30px rgba(0, 0, 0, 0.08);
   border: 1px solid #e2e8f0;
   z-index: 1;
   padding: 15px;
}

#arrow,
#arrow::before {
   position: absolute;
   width: 8px;
   height: 8px;
   z-index: -1;
   top: 2px;
   left: -3px;
}

#arrow::before {
   content: '';
   transform: rotate(45deg);
   background: #fff;
   /*#333*/
   border-left: 1px solid #e2e8f0;
   border-bottom: 1px solid #e2e8f0;
}

#tooltip[data-popper-placement^='top']>#arrow {
   bottom: -4px;
}

#tooltip[data-popper-placement^='bottom']>#arrow {
   top: -4px;
}

#tooltip[data-popper-placement^='left']>#arrow {
   right: -4px;
}

#tooltip[data-popper-placement^='right']>#arrow {
   left: -4px;
}

.tooltip-title {}

.tooltip-text {
   font-weight: 400;
   color: #798186;
   max-width: 300px;
}

.message {
   /*border: 1px solid #e2e8f0;*/
   border-radius: 5px;
   padding: 15px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   animation-duration: 1s;
   animation-name: fadeIn;
}

.success {
   background: #e6fffa;
   border-left: 4px solid #38b2ac;
}

.error {
   background: #fffaf0;
   /*fed7d7*/
   border-left: 4px solid #ed8936;
}

#close-message {
   cursor: pointer;
}

@keyframes fadeIn {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

.linear-loader {
   width: 100%;
   height: 10px;
   background: #e6fffa;
   overflow: hidden;
   position: relative;
}

.linear-loader .activity {
   background: #bde8e0;
   width: 20%;
   height: 100%;

   position: absolute;
   animation-name: loading;
   animation-duration: 1.4s;

   animation-iteration-count: infinite;
}

@keyframes loading {
   from {
      left: -20%;
   }

   to {
      left: 120%;
   }
}

.inline-flex {
   display: flex;
   align-items: center;
   margin: 10px 0;
}

.inline-flex label {
   margin: 0 7px;
}

/* Customize the label (the container) */
.container {
   display: block;
   position: relative;
   padding-left: 30px;
   margin-bottom: 12px;
   cursor: pointer;
   /*font-size: 22px;*/
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
   position: absolute;
   opacity: 0;
   cursor: pointer;
   height: 0;
   width: 0;
}

/* Create a custom checkbox */
.checkmark {
   position: absolute;
   top: 0;
   left: 0;
   height: 20px;
   width: 20px;
   background-color: #eee;
   border: 1px solid #e2e8f0;
   border-radius: .2rem;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
   /*background-color: #ccc;*/
   background-color: #f7fafc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
   background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
   content: "";
   position: absolute;
   display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
   display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
   left: 7px;
   top: 3px;
   width: 4px;
   height: 8px;
   border: solid #4299e1;
   border-width: 0 3px 3px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
}
