/* Symbols */
.input-symbol {
    display: flex;
    justify-content: flex-start;
}

.input-symbol input {
    flex: 1 1 300px;
}

.input-symbol .symbol {
    font-size: inherit;
    padding: 24px 10px 0 10px;
    border-right: 0;
    font-weight: 500;
    width: 50px;
    text-align: center;
    opacity: 0.5;
}

.bottom-informer {
    display: block;
    height: 30px;
    margin-top: 30px;
    bottom: 0px;
    border-top: 1px solid #DEE2E8;
}

/* Form message */
.form-message {
    display: none;
    /* font-size: 3rem; */
    text-transform: uppercase;
    font-weight: bolder;
    padding-top: 20px;
    text-align: center;
}

.form-message.success {
    
}

.form-message.info {
    
}

.form-message.error {
    
}

.form-message.warning {
    
}

/* Loading spinner */
.spinner-loading { 
    position: absolute; 
    background-color: rgba(246, 247, 250, 0.9); 
    width: 100%; 
    height: 100%; 
    z-index: 10; 
    display: none; 
    opacity: 0; 
    transition: opacity .2s ease-in-out; 
} 
   
.spinner-loading .loader-image { 
    margin-top: 30px; 
    animation: rotation 2s linear infinite; 
} 
   
.spinner-loading span { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 100%; 
} 
   
.spinner-loading.show { 
    display: flex; 
    opacity: 1; 
}

.spinner-loading.hide {
    opacity: 0;
}

.claim-info .claim-message {
    padding: 30px;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1em;
    text-align: center;
    display: none;
    line-height: 1em;
}

.claim-info .claim-message.processing .loader {
    font-size: 3px;
    margin-top: -5px;
}

.form-type .selectric-custom-select.error-wrap .selectric {
    border: 1px solid #F29BA0;
}

.button-wrap-center-inline {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
 
.button-wrap-center-inline .button-wrap {
    margin-right: 10px;
}

.form-type .remove-doc-btn {
    background: none;
    border: none;
    padding: 0;
    position: relative;
    outline: none;
    line-height: 28px;
    font-size: 14px;
    font-weight: 500;
}

.form-type .remove-doc-btn:hover {
    color: #ead204;
}

.form-type .remove-doc-btn:before {
    display: block;
    clear: both;
    display: inline-block;
    vertical-align: top;
    content: '–';
    background: #eaecef;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-weight: 300;
    font-size: 27px;
    color: #000;
    margin-right: 16px;
}

@media (min-width: 768px) {
    .product-take-claim .remove-doc-btn {
      margin-left: 12px;
    }
  }

.form-control:focus {
    border-color: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Panic */

.panic-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 100%;

}

.panic-wrapper .panic-indicator {
    width: 32px;
    height: 32px;
}

.panic-wrapper .panic-indicator.level-0 {
    fill: #ccc;
}

.panic-wrapper .panic-indicator.level-1 {
    fill: #edd81d;
}

.panic-wrapper .panic-indicator.level-2 {
    fill: #ed631d;
}

.panic-wrapper .panic-indicator.level-3 {
    fill: #ed1d1d;
}

.panic-wrapper .selectric-wrapper {
    width: 100%;
    margin-right: 2rem;
}