.modal-dialog {
    width: 100%;
}
.modal-dialog.leave-survey {
    max-width: 350px;
}

.modal-content {
    padding: 15px;
    border-radius: 0;
    color: white;
    overflow: auto;
}

.modal-header {
    background-color: #337AB7;
    color: #FFF;
    border-bottom: 1px dashed #337AB7;
 }

#modal textarea {
    resize: none;
    height: 60px;
    width: 100%;
}

.close-popup {
    float: right;
}

.bg-bright-blue {
    background-color:rgb(182, 218, 240);
 }

.input-no-border {
    border: none;
    padding-left: 3px;
    width: 337px;
}
.text-info span {
    display: block;
}

.form-control.is-valid {
    border-color: #CED4DA;
}

.form-check-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.multiple-selection .form-check-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-buttons .form-check-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.multiple-selection .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.radio-buttons .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.form-check-label:hover input ~ .checkmark {
    background-color: #ccc;
}

.form-check-label input:checked ~ .checkmark {
    background-color: #2196F3;
}

.multiple-selection .form-check-label .checkmark:after {
    content: " ";
    position: absolute;
    display: none;
}

.radio-buttons .form-check-label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-check-label input:checked ~ .checkmark:after {
    display: block;
}

.multiple-selection .form-check-label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radio-buttons .form-check-label .checkmark:after {
    top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.invalid-feedback {
    display: block;
    border: none;
}

.send-email-to-cases {
    white-space: nowrap;
}

#id_feedback {
    overflow: auto;
    resize: both;
    height: 60px;
    display: inline-block;
    width: auto;
    min-width: 0;
}

#id_user_feedback {
    width: 100%;
    height: 120px;
    overflow: auto;
    resize: both;
    display: inline-block;
    min-width: 0;
}

.feedback-label {
    display: inline-block;
    padding: 10px;
    text-align: right;
    vertical-align: top;
}

.language-link:hover {
    text-decoration: none;
}

.continue-later-link {
    display: inline-block;
}

.qrcode {
    display: inline-block;
    float: right;
    margin-left: 15px;
}

.tooltip-inner {
    max-width: 600px;
}

#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
