/*...............................*/
/*_____________HEADER____________*/
/*...............................*/
.header {
	margin-top: 20px;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    cursor: default;
}

.introduction {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #eee;
}

.introduction i {
	display: block;
	font-size: 20px;
    color: #888888;
}

.introduction h1 {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 6px;
    color: #ebeae8;
    text-transform: uppercase;
}

.introduction p {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    padding-top: 12px;
    font-size: 14px;
    color: #bbb;
    border-top: 1px dashed #e27f00;
    letter-spacing: 3px;
}

/*...............................*/
/*______________FORM_____________*/
/*...............................*/
.formOpinionWrapOut {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 50px;
	width: 400px;
	padding: 10px;
    border-radius: 10px;
	border: 2px solid #e27f00;
    background-image:  -webkit-linear-gradient(#282828, #090909);
    background-image:  -o-linear-gradient(#282828, #090909);
    background-image:  linear-gradient(#282828, #090909);
	color: #fff;
	z-index: 15;
	overflow: hidden;
}

.formOpinionWrapOut .iconOpinion {
    text-align: center;
    font-size: 25px;
    margin: 5px 0;
}

.titlePostWrap{
    display: flex;
    margin-top: 20px;
    margin-bottom: 5px;
}

.titlePostWrap span{
    width: 80px;
    color: #ccc;
    padding-right: 5px;
    margin-right: 5px;
    border-right: 2px solid #e27f00;
}

.titlePostWrap #titlePost,
.titlePostWrap #contactPost{
    width: 100%;
    padding: 3px;
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
    outline: none;
}

.titlePostWrap #titlePost:focus,
.titlePostWrap #contactPost:focus{
    border: 1px solid #e27f00;
}

#textPost {
    width: 100%;
    height: 173px;
    background-color: #000;
    color: #fff;
    resize: none;
    padding: 5px;
    outline: none;
}

#textPost {
	overflow-y: scroll;
	scrollbar-color: #e27f00 #000;
	scrollbar-width: thin;
}

#textPost::-webkit-scrollbar {
	width: 7px;
	height: 0;
}

#textPost::-moz-scrollbar {
	width: 7px;
	height: 0;
}

#textPost::-webkit-scrollbar-track {
	background-color: #000;
}

#textPost::-moz-scrollbar-track {
	background-color: #000;
}

#textPost::-webkit-scrollbar-thumb {
	background-color: #e27f00;
}

#textPost::-moz-scrollbar-thumb {
	background-color: #e27f00;
}

#textPost::-webkit-scrollbar-button {
	display: none;
}

#textPost::-moz-scrollbar-button {
	display: none;
}

#textPost:focus{
    border: 1px solid #e27f00;
}

.warningOpinion{
    display: none;
    text-align: center;
    animation: error infinite 5s;
}

@keyframes error {
	0% {
		opacity: 1;
	}

	45% {
		opacity: 1;
	}

	55% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#sendPost {
	display: block;
	width: 100%;
	padding: 10px;
	margin: 10px auto;
	font-size: 15px;
	background-image: linear-gradient(#00e428, #0b8000);
	color: #fff;
    border-radius: 5px;
	border: none;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
}


/*...............................*/
/*_____________THANKS____________*/
/*...............................*/

.showThanks{
    color: #ffc400;
    text-align: center;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 12px;
    display: none;
    opacity: 0;
}

.showThanksOn{
    animation: showThanks 2s both;
}

@keyframes showThanks {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/*...............................*/
/*________COME BACK LATER________*/
/*...............................*/

.recently_submitted_reviews{
    max-width: 600px;
    color: #ffc400;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 5px;
    margin: 50px auto;
}

/*...............................*/
/*___________RESPONSIVE__________*/
/*...............................*/

@media (max-width: 430px)
{
    .formOpinionWrapOut{
        width: 100%;
    }
    
    
}