::-webkit-scrollbar {
	width: 6px;
	border-radius: 8px;
}

::-webkit-scrollbar-thumb {
	background-color: #e1e1e1;
	border-radius: 8px;
}

.blur {
	filter: blur(2px);
	pointer-events: none;
	user-select: none;
}

.user-login-private {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 9999;
}

.private-background {
	position: absolute;
	top: 0;
	z-index: 1;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(11 11 11 / 33%);
}

.private-content {
	width: 92%;
	max-width: 600px;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 20px rgba(11 11 11 / 33%);
	position: absolute;
	z-index: 3;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	padding: 16px;
}

.private-head {
	font-size: 19px;
	line-height: 23px;
	font-weight: 500;
	margin: 12px 0 16px;
	color: #2f4f4f;
	user-select: none;
	width: fit-content;
}


.private-row {
	margin-bottom: 16px;
}
.private-row .form-content {
	line-height: 36px;
}

.private-button {
	padding: 12px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #008080;
	border-radius: 5px;
	border: none;
	font-weight: bold;
}

.private-button svg {
	margin-right: 8px;
}

.container {
	max-width: 900px;
	margin: 32px auto;
}

.panel-body {
	border-radius: 0;
	border: none;
	padding: 0;
}
.panel-default {
	border: none !important;
}

.message-form {
    --banner: calc(320px + (420 - 320) * ((100vw - 300px) / (1920 - 300)));
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.feedback-banner {
	width: var(--banner);
	position: relative;
}

.feedback-banner img {
	width: 100%;
	border: none;
	user-select: none;
	object-fit: contain;
}

.feel-free {
	font-size: calc(35px + (45 - 35) * ((100vw - 300px) / (1920 - 300)));
	font-weight: bold;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #008080;
	line-height: 1.2;
	width: 70%;
}

.content {
	width: calc(100% - var(--banner));
	padding: 36px 48px 16px;
	max-height: 650px;	
}

.content-scroll {
	max-height: calc(100% - 70px);
	overflow-x: hidden;
	overflow-y: auto;
}

.content-row {
	margin-bottom: 16px;
    position: relative;
}

.message {
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    user-select: none;
}
.message > *:not(br) {
    display: none;
}

.receiver-success {
    color: green;
}

.receiver-error {
    color: red;
}

.content-row label {
	margin: 0;
	font-weight: 600;
	min-width: 110px;
	width: 100%;
	display: block;
	margin-bottom: 6px;
	font-size: 16px;
}

.links a{
    padding-left: 8px;
    padding-right: 8px;
}

.content-row select {
	width: 100%;
	background-color: #fff;
	border: 1px solid #d1d1d1;
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	padding: 8px 10px;
	width: 100%;
	margin: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
	background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%, calc(100% - 16px);
	background-size: 5px 5px, 5px 5px, 1px calc(100% - 16px);
	background-repeat: no-repeat;
	outline: nne;
}

.content-row select:focus {
	background-image: linear-gradient(45deg, #1e80b8 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%);
	background-position: calc(100% - 7px) 50%, calc(100% - 12px) 50%;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	outline: 0;
	border-color: #1e80b8;
}

.form-content {
	width: 100%;
	display: block;
	width: 100%;
	padding: 7px 10px;
	line-height: 1.2857143;
	background-color: #fff;
	background-image: none;
	border: 1px solid #d1d1d1;
	border-radius: 3px;
	font-size: 16px;
	resize: none;
	outline: none;
}

.selectize-control.form-content.single,
.selectize-input #receiver-selectized {
    border: none !important;
    padding: 0;
}

.feedback-action {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 0;
}


.form-content:focus {
	outline: 3px solid #d7e9ec;
	border-color: #6aa1ac;
}

.rate {
	display: flex;
	justify-content: flex-end;
	flex-direction: row-reverse;
	padding: 0;
	margin: 12px 0 24px;
	position: relative;
}


.rate:not(:checked) > input {
	opacity: 0;
	position: absolute;
	z-index: -1;

}
.rate:not(:checked) > label {
	width: 10%;
	white-space:nowrap;
	cursor:pointer;
	font-size: 13px;
	text-align: right;
	position: relative;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.rate:not(:checked) > label:before {
	content: '';
	height: 6px;
	width: 100%;
	display: block;
	background-color: #e6eaed;
	margin-bottom: 10px;
}

.rate:not(:checked) > label[for=star1]:before {
	border-radius: 6px 0 0 6px;
}

.rate:not(:checked) > label[for=star10]:before {
	border-radius: 0 6px 6px 0
}

.rate:not(:checked) > label:after {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 16px;
	display: block;
	background-color: #6aa1ac;
	position: absolute;
	right: -6px;
	top: -6px;
	outline: 3px solid #d7e9ec;
	box-shadow: 0 3px 9px rgba(11 11 11 / 8%);
	opacity: 0;
	transition: opacity 300ms ease-in-out ;
}

.rate > input:checked ~ label {
	color: #6aa1ac;  
}

.rate > input:checked ~ label:before  {
	background-color: #6aa1ac;   
}

.rate > input:checked + label:after  {
	opacity: 1;
}


.rate:not(:checked) > label:hover:before,
.rate:not(:checked) > label:hover ~ label:before {
	background-color: #6aa1ac;  
}

.rate > input:checked + label:hover:before,
.rate > input:checked + label:hover ~ label:before,
.rate > input:checked ~ label:hover:before {
	background-color: #6aa1ac;
}

.content-head {
	font-size: 19px;
	line-height: 23px;
	font-weight: bold;
	margin: 24px 0 12px;
	color: #2f4f4f;
	user-select: none;
}

.send-feedback {
	padding: 16px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #008080;
	width: 100%;
	border-radius: 5px;
	border: none;
	font-weight: bold;
}

.send-feedback svg {
	margin-right: 8px;
}

.disable+.icon-loading {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 2px solid rgba(111 111 111 / 40%);
    position: relative;
    margin: 0 4px 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.disable+.icon-loading::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 20px;
    border-top: 2px solid rgba(111 111 111 / 60%);
    border-left: 2px solid rgba(111 111 111 / 60%);
    position: absolute;
    top: -2px;
    left: -2px;
    animation: lds-ring 700ms cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disable {
	word-break: break-all;
    height: fit-content;
    position: relative;
    color: transparent;
    overflow: hidden;
}

.notify {
    font-size: 13px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    padding: 12px;
    background-color: #fff;
    border-radius: 10px;
    transform: translateX(300%);
    transition: transform 300ms ease-in-out;
    font-weight: bold;
    user-select: none;
    z-index: 99;
    box-shadow: 0 6px 36px rgba(11 11 11 / 11%);
}

.notify.open {
    transform: translateX(0);
}

.content-message {
	display: flex;
	margin-bottom: 32px;
}

.content-avatar {
	width: 48px;
	min-width: 48px;
	height: 48px;
	border-radius: 48px;
	display: flex;
	justify-content: center;
	align-content: center;
	background-color: #d7e9ec;
	position: relative;
}

.content-box {
	width: calc(100% - 48px);
	padding-left: 12px;
    position: relative;
}

.content-box .message {
	background-color: #f4f4f4;
	position: relative;
	border: none;
	font-size: 15px;
	padding: 12px 16px;
	line-height: 1.2;
}

.content-box .message:before {
	content: "";
	width: 0; 
	height: 0; 
	border-top: 0 solid transparent;
	border-bottom: 24px solid transparent; 
	border-right: 24px solid #f4f4f4; 
	position: absolute;
	top: 0;
	left: -12px;
}

.content-avatar:before {
	content: "";
	padding: 0;
	display: block;
}

.content-avatar img {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: contain;
	object-position: center;
}

.sendby {
    text-align: right;
    font-size: 13px;
    margin-top: 4px;
}

.scored {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    margin-bottom: 4px;
}
.send-feedback-link {
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #008080;
    background-color: #fff;
    width: 100%;
    border-radius: 5px;
    border: solid 1px #008080;
    font-weight: bold;
}
.send-feedback-link:hover{
    color: #fff;
    background: #008080;
    border: none;
    text-decoration: none;
}