.--w-auto {
    width: auto !important;
}

.--modal-header, .modal-header {
    padding: 15px;
    background-color: #1a3b70 !important;
    border: none;
    color: #ffffff;
    border-radius: 0 0 15px 15px;
}

.modal-header h1, .modal-header h2, .modal-header h3, .modal-header h4, .modal-header h5, .modal-header h6 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    font-size: 22px;
}

.--modal-header-shadow {
    box-shadow: 0 8px 8px 0 #c5c5c5;;
}

.--modal-row {
    display: flex;
    width: 100%;
}

.modal-body > .--modal-container {
    width: 100%;
    padding: 0 15px;
}

.modal .--close, .modal .close {
    float: right;
    margin-top: 10px !important;
    font-size: 24px !important;
    font-weight: bold;
    line-height: normal !important;
    color: #f45944;
    filter: alpha(opacity=100);
    opacity: 1;
    text-shadow: none;
}

.modal .close:hover,
.modal .--close:hover{
    color: #f7442c;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}

.modal-content {
    overflow: hidden;
}

.--modal-footer {
    background: #f2f2f2;
    box-shadow: inset 0 10px 5px #eeeeee;
    border-radius: 8px 8px 0 0;
}

.--radio-container {
    position: relative;
    padding-left: 25px;
  }

  .--radio-container input {
    display: none;
  }

  .--radio-container span.--radio-button {
    width: 20px;
    height: 20px;
    border: 3px solid #1a3b70;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: 1px;
    border-radius: 50%;
  }
  .--radio-container input:disabled+span.--radio-button {
    background-color: #cecece;
  }

  .--radio-container span.--radio-button-check {
    font-size: 30px;
    color: #A1A1A1;
    display: block;
    position: absolute;
    left: -5px;
    top: -10px;
  }

  .--radio-container input:checked+span.--radio-button {
    background-color: #1a3b70;
  }

  .--radio-container span.--radio-button-reject {
    font-size: 30px;
    color: #A1A1A1;
    display: block;
    position: absolute;
    left: -5px;
    top: -10px;
  }

  .--radio-container input:checked+span.--radio-button-check {
    color: #5CB85C;
  }

  .--radio-container input:checked+span.--radio-button-reject {
    color: red;
  }

.--form-upload {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
}
.--upload-button {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: inline-block;
}
.--upload-button > button {
    width: 100%;
    height: 85%;
}
.--form-upload > input[type="text"] {
    width: 100%;
    height: 100%;
    margin: 0;
}
.--upload-button input[type="file"] {
    font-size: 100px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.--upload-button .--btn:hover {
    cursor: pointer;
}
.--upload-button input[type="file"]:hover {
    cursor: pointer;
}
.--upload-button:hover {
    cursor: pointer;
}

.--textbox {
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 3px 8px #c5c5c5;
    border-radius: 15px;
    padding: 1em;
}
