/* The checkbox-container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 48px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.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: 25px;
    width: 25px;
    border: 1px solid #cccccc;
    color: #404040;
    background-color: white;
}

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


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

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

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.loading__animation svg {
    width: 60px;
    height: 60px;
    display: inline-block;
}

.loading__animation svg path {
    fill: #0392CF;
}

.c6300-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  
  .c6300-modal-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
  }
  
  .c6300-modal {
    background-color: white;
    width: 100%;
    max-height: calc(100vh - 106px);
    color: #404040;
    overflow-y: scroll;
  }
  
  .c6300-modal p {
    color: #404040;
  }
  
  @media screen and (min-width: 1026px) {
    .c6300-modal {
        overflow-y: hidden;
    }
  }
  
  .c6300-modal-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    overflow-y: auto;
  }
  
  .c6300-modal-header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  @media screen and (min-width: 1026px) {
    .c6300-modal-header-container {
        align-items: flex-start;
    }
  }
  
  .c6300-modal-close-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
  }
  
  .c6300-modal-subtitle {
    width: 100%;
    padding-top: 24px;
    margin-bottom: 16px;
  }
  
  .c6300-modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .c6300-modal-title:empty,
  .c6300-modal-subtitle:empty {
    display: none;
  }

  .c6300-form-field__label {
    margin-bottom: 8px;
    font-family: "LL Circular Book Web", sans-serif;
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #707070;
  }

  .c6300-upload-button {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    border-width: 1px;
    border-color: #0d123d;
    font-size: 1.125rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    letter-spacing: 0.031rem;
    font-family: "FuturaNext-Medium" sans-serif;
    font-weight: 500;
    transition: padding-right 0.3s;
    line-height: 20px;
  }

  .c6300-upload-button:hover {
    background-color: #0d123d;
    color: #ffffff;
  }