


/* CONTACT US FORM START */

.col-contact-us .background {
	display: flex;
	min-height: 95vh;
}

.col-contact-us .container {
	flex: 0 1 700px;
	margin: auto;
	padding: 10px;
}

.col-contact-us .screen {
	position: relative;
	background: #ffffff;
	border-radius: 15px 15px 12px 12px;
}

.col-contact-us .screen:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	bottom: 0;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
	z-index: -1;
}

.col-contact-us .screen-header {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background: #4b4d54;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.col-contact-us .screen-header-left {
	margin-right: auto;
}

.col-contact-us .screen-header-button {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 3px;
	border-radius: 8px;
	background: white;
}

.col-contact-us .screen-header-button.close,
.col-contact-us .screen-header-button.maximize,
.col-contact-us .screen-header-button.minimize {
	background: var(--color-5);
}

.col-contact-us .screen-header-right {
	display: flex;
}

.col-contact-us .screen-header-ellipsis {
	width: 3px;
	height: 3px;
	margin-left: 2px;
	border-radius: 8px;
	background: var(--color-5);
}

.col-contact-us .screen-body {
	display: flex;
    background-color: #181c28;
}

.col-contact-us .screen-body-item {
	flex: 1;
	padding: 50px;
}

.col-contact-us .screen-body-item.left {
	display: flex;
	flex-direction: column;
}

.col-contact-us .app-title {
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--color-yellow) !important;
	font-size: 26px;
	font-weight: 500;
}

.col-contact-us .app-title:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 55px;
	height: 2px;
	background: var(--color-yellow);
}

.col-contact-us .app-contact {
	margin-top: auto;
	font-size: 11px;
	color: var(--color-4) !important;
	font-weight: 600;
}


/* .col-contact-us .app-contact a {} */

.col-contact-us .app-form-group {
	margin-bottom: 15px;
}

.col-contact-us .app-form-group.message textarea::-webkit-scrollbar-track {
	background: var(--color-5);
}

.col-contact-us .app-form-group.message textarea::-webkit-scrollbar {
	width: 4px;
}

.col-contact-us .app-form-group.message textarea::-webkit-scrollbar-thumb {
	background-color: var(--color-4);
	border-radius: 4px;
}

.col-contact-us .app-form-group.buttons {
	margin-bottom: 0;
	text-align: right;
}

.col-contact-us .app-form-control {
	width: 100%;
	padding: 10px 0;
	background: none;
	border: none;
	border-bottom: 1px solid var(--color-2);
	color: var(--color-2) !important;
	font-size: 14px;
	outline: none;
	transition: border-color .2s;
}

.col-contact-us .app-form-control::placeholder {
	color: #666 !important;
}

.app-form-control.error {
	border-color: red !important;
	animation: shake 0.2s ease-in-out 0s 2;
}

.col-contact-us .app-form-control.error::placeholder {
	color: red !important;
}

@keyframes shake {
	0% {
		margin-left: 0rem;
	}

	25% {
		margin-left: 0.5rem;
	}

	75% {
		margin-left: -0.5rem;
	}

	100% {
		margin-left: 0rem;
	}
}

.col-contact-us .app-form-control:focus {
	border-bottom-color: #ddd;
}

.col-contact-us .app-form-button {
	background: none;
	border: none;
	color: var(--color-yellow) !important;
	font-size: 14px;
	cursor: pointer;
	outline: none;
	border-radius: 3px;
	border-radius: 3px;
	transition: 0.3s;
	font-weight: 500;
}

.app-form-button.cancel {
	color: var(--color-2) !important;
}

.app-form-button.cancel:hover {
	background-color: var(--color-2) !important;
	color: var(--color-3) !important;
}

.col-contact-us .app-form-button:hover {
	background-color: var(--color-yellow);
	color: var(--color-3) !important;
}

.col-contact-us .credits {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	color: #ffa4bd;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	font-weight: normal;
}

.col-contact-us .credits-link {
	display: flex;
	align-items: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.col-contact-us .dribbble {
	width: 20px;
	height: 20px;
	margin: 0 5px;
}


/* CUSTOM MEDIA */

@media screen and (max-width: 520px) {
	.col-contact-us .screen-body {
		flex-direction: column;
	}

	.col-contact-us .screen-body-item.left {
		margin-bottom: 30px;
	}

	.col-contact-us .app-title {
		flex-direction: row;
	}

	.col-contact-us .app-title span {
		margin-right: 12px;
	}

	.col-contact-us .app-title:after {
		display: none;
	}
}


/* CUSTOM MEDIA */

@media screen and (max-width: 600px) {
	.col-contact-us .screen-body {
		padding: 40px;
	}

	.col-contact-us .screen-body-item {
		padding: 0;
	}
}


/* CONTACT US FORM END */