.wrapper {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.main {
    flex: 1;
    position: relative;
    padding-top: 0px;
}

.login-part {
    padding: 50px;
}

.main-part {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 20px;
}

.title-text {
    font-weight: bold;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    height: 24px;
}

.card {
    font-weight: 400;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.card:hover {
    font-weight: 400;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.card .card-title {
    height: 89px;
    position: relative;
    padding: 25px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e5e5e5;
}

.card .card-body {
    height: 51px;
    position: relative;
    padding: 15px;
}

.card:hover .card-title {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.card:hover .card-body {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.card-img {
    width: 130px;
    height: auto;
}

.card-img img {
    width: 130px;
    height: auto;
}

.card-account {
    padding: 6px 20px 6px 20px;
    font-weight: 400;
    border: 0;
    background-color: #005677;
    color: white;
    cursor: pointer;
}

/* background: */
progress::-webkit-progress-bar {
    background-color: #edebe9;
    width: 100%;
}
progress {
    background-color: #edebe9;
}

/* value: */
progress::-webkit-progress-value {
    background-color: #f36928 !important;
}
progress::-moz-progress-bar {
    background-color: #f36928 !important;
}
progress {
    color: #f36928;
}

.ms-ChoiceField-input:checked + .ms-ChoiceField-field:after {
    background-color: #f36928;
    border-color: #f36928;
    color: #f36928;
    border-radius: 50%;
    content: '\00a0';
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
}
/*
.ms-ChoiceField-input:checked:hover + .ms-ChoiceField-field:after {
  background-color: #f36928;
  border-color: #f36928;
  color: #f36928;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
}

.ms-ChoiceField-input:hover + .ms-ChoiceField-field:after {
  background-color: #a19f9d;
  color: #a19f9d;
  border-radius: 50%;
  border: 1px #a19f9d solid;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
}
*/

.ms-ChoiceField-field:before {
    content: '';
    display: inline-block;
    background-color: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: #a19f9d;
    width: 20px;
    height: 20px;
    font-weight: normal;
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    transition-property: border-color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
    border-radius: 50%;
}

.ms-ChoiceField-field:after {
    content: '';
    display: inline-block;
    border: 1px #a19f9d solid;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    font-weight: normal;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    position: absolute;
}

::-webkit-scrollbar {
    height: 10px !important;
    width: 10px !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(252, 252, 252, 0.3) !important;
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    background: #8b8b8b !important;
    -webkit-box-shadow: inset 0 0 6px rgba(252, 252, 252, 0.5) !important;
}

::-webkit-scrollbar-thumb:active {
    background: #606060 !important;
}

@media screen and (max-width: 768px) {
    :root {
        touch-action: none;
    }    
}