@charset "utf-8";
/* CSS Document */


.que-warapper { margin:30px auto 60px; max-width:768px; box-shadow: 0 6px 16px rgb(0 0 0 / 15%); padding:15px;}

.q-title{ font-size:20px; line-height:30px; margin:30px 0px 0px;}

.que-box {padding:20px; box-shadow: 0 6px 16px rgb(0 0 0 / 15%); margin:30px 0 60px;}
.que-box img{ margin:10px auto; display:block; border-radius:5px; border: 1px solid #ccc;}

.que{font-weight:600; margin-bottom:5px; font-size:17px; color:#666;}

/* Choose all input elements that have the attribute: type="radio" and make them disappear.*/
.que-box input[type="radio"] {
  display:none;
}

/* The label is what's left to style. 
As long as its 'for' attribute matches the input's 'id', it will maintain the function of a radio button. */
.que-box label {
  padding:9px 12px;
  display: inline-block;
  border: 1px solid #ccc;
  cursor: pointer;
  margin:10px 0;
  width:100%;
  line-height:30px;
  color: #878787;
  border-radius: 2px;
  font-size:15px;
}

.que-box .blank-label {
  display: none;
}

/* The '+' is the adjacent sibling selector.
It selects what ever element comes right after it,
as long as it is a sibling. */
.que-box input[type="radio"]:checked + label {
  background: grey;
  color: #fff;
}

a:hover label{  background: grey;
  color: #fff;}
 
.q-submit{background:#e9573e; margin:-50px 2px 20px; border-radius:2px; padding:8px 30px; border:none;
text-decoration:none; cursor:pointer; color:#fff; font-size:18px; -webkit-appearance:none; outline:none;}



/*------------------------number animation---------------------------------*/
.num{margin:70px auto 0; font-size:30px; text-align:center; display:table;}


.pulse{
    width: 60px;
    height: 60px;
    background:#e9573e;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    line-height: 60px;
    animation: animate-pulse 3s linear infinite;
    cursor: pointer
}
@keyframes animate-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.7),  0 0 0 0 rgba(255,109,74,0.7);
    }
    40%{
        box-shadow: 0 0 0 20px rgba(255,109,74,0.0),  0 0 0 0 rgba(255,109,74,0.7);
    }
    80%{
        box-shadow: 0 0 0 20px rgba(255,109,74,0.0),  0 0 0 30px rgba(255,109,74,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255,109,74,0.0),  0 0 0 30px rgba(255,109,74,0);
    }
    
}

/*----------------------main page -----------------------*/

.que-mainpage-warapper { }
.quiz-box { margin:30px auto; max-width:400px; box-shadow: 0 6px 16px rgb(0 0 0 / 15%); padding:15px 15px 5px; border-radius:5px;}
.quiz-box a h3{ font-size: 16px;font-weight: 600;line-height: 25px; color:#333; height:45px;}
.quiz-box a:hover h3{ color:#e9573e;}
.quiz-box img{border-radius:5px;}
/*-----------------------------*/

.result-warapper { margin:30px auto 60px; max-width:768px; box-shadow: 0 6px 16px rgb(0 0 0 / 15%); padding:20px; position:relative; overflow: hidden;}
.result-warapper img{ margin:0 auto; display:block; border-radius:5px;}
.result-warapper a{ margin-bottom:20px;  margin-right:5px; }
.result-btn{line-height: 37px;
    padding: 0 20px;
    background: #e9573e;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
    font-size: 14px;
    width: 110px;
    text-align: center;
    vertical-align: middle;}
	
.result-warapper h3{ font-size:23px; line-height:28px; font-weight:400;}
.result-warapper .gray{ color:#878787; font-size:16px !important; line-height:30px !important;}
.result-warapper ul li{ position: relative; padding-left:20px; font-size:16px;line-height:30px;}

.result-warapper ul li a:hover{ text-decoration:underline;}
.result-warapper ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 10px;
    background:#e9573e;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

.text{display:none; margin-top:20px;}

.view-more-btn  {
    color: #333; margin-top:20px;
    text-transform: uppercase;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 0 25px;
    line-height: 35px;
    font-weight: 600;
	font-size: 14px;
    display: inline-block;
	cursor: pointer;
}

.view-more-btn:hover {
    border: 1px solid #e9573e;
    color: #e9573e;
}

	
/*---------------------------dropdown---------------------------------------*/

.search-container{width:100%; margin:30px 0; }
.search-container input[type="submit"]{
width:15%;color: #FFFFFF;cursor: pointer;height:50px;text-transform:uppercase;font-size:14px;border:none;background-color:#e9573e;float:left;line-height: 1.2;letter-spacing: 0.6px;padding: 5px; border-radius:2px; border-bottom-left-radius: 0; border-top-left-radius: 0;}
.search-container input[type="text"] {
height: 50px;padding: 5px;width: 70%;border:1px solid #cccccc;float:left;font-size:14px; color:#c7c7c7; letter-spacing:1px; }
.search-container input[type="text"]:focus, .search-container input[type="submit"]:focus{outline : none;}
.search-container input[type="image"]{ display:none;  border-radius:2px; border-bottom-left-radius: 0; border-top-left-radius: 0; }
/* drop down*/
select,
.dropdown{	margin-bottom: 20px;display: inline-block;}
.dropdown,.dropdown div,.dropdown li,.dropdown div::after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
.dropdown .selected::after,
.dropdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}
/* WRAPPER */
.dropdown{	position: relative;	width: 15%;	cursor: pointer;	padding:18px 15px;	float:left;	height:50px;	text-transform:uppercase; background-color: #363636;	-webkit-user-select: none;	-moz-user-select: none;	user-select: none;	color:#fff;	border-radius:2px; 	border-bottom-right-radius: 0;	border-top-right-radius: 0;}
.dropdown.open{	z-index: 2;}

/* CARAT */

.dropdown .carat{	position: absolute;	right: 12px;	top: 50%;	margin-top: -4px;	border: 6px solid transparent;	border-top: 8px solid #fff;}
.dropdown.open .carat{	margin-top: -10px;	border-top: 6px solid transparent;	border-bottom: 8px solid #fff;}

/* OLD SELECT (HIDDEN) */

.dropdown .old{	position: absolute;	left: 0;	top: 0;	height: 0;	width: 0;	overflow: hidden;}
.dropdown select{	position: absolute;	left: 0px;	top: 0px;}

/* SELECTED FEEDBACK ITEM */ 

.dropdown .selected,
.dropdown li{	display: block;	font-size: 14px;	line-height: 1.2;	overflow: hidden;	white-space: nowrap;	letter-spacing: 0.6px;}
.dropdown .selected::after{	content: '';	position: absolute;	right: 0;	top: 0;	bottom: 0;	width: 60px;	border-radius: 0 2px 2px 0;}

/* DROP DOWN WRAPPER */

.dropdown div{	position: absolute;	height: 0;	left: 0px;	right: 0px;	top: 100%;	margin-top: -1px;	background: #fff;	border: 1px solid #ccc;	border-top: 1px solid #eee;	border-radius: 0 0 3px 3px;	overflow: hidden;	opacity: 0;}

/* Height is adjusted by JS on open */

.dropdown.open div{	opacity: 1;	z-index: 2;}

/* DROP DOWN LIST */

.dropdown ul{	position: absolute;	left: 0;	top: 0;	height: 100%;	width: 100%;	list-style: none;	overflow: hidden;}
.dropdown.scrollable.open ul{	overflow-y: auto;}

/* DROP DOWN LIST ITEMS */

.dropdown li{	list-style: none;	padding: 8px 15px;	color:#333;}

/* .focus class is also added on hover */

.dropdown li.focus{	position: relative;	z-index: 3;	color: #e9573e;}


@media screen and (max-width: 1023px){.search-container input[type="text"] { width:52%;}
.dropdown{width:24%;}
.search-container input[type="submit"] { display:block; width:24%;}
}

@media (max-width:640px){.que-warapper{box-shadow:none; padding:0;}}

@media screen and (max-width: 639px){.search-container{margin:30px auto!important;  float:none!important; text-align:center !important;}	
.dropdown {float:none;  width:100%;  text-align:left; margin-bottom: 5px; border-radius:2px!important;}
 .search-container input[type="text"],.search-container input[type="submit"]{ display:none;}
}


.ui-autocomplete {
    max-height: 200px;
    overflow: auto;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f5f5f6;
    width: 50%;
    z-index: 5;
    position: relative
}

.ui-menu .ui-menu-item {
    position: relative;
    margin: 0;
    cursor: pointer;
    min-height: 0
}

.ui-menu-item a {
    color: #333
}

.ui-menu-item a:hover {
    color: #e9573e
}

.ui-menu-item {
    padding: 4px;
    font-size: 14px
}

.ui-autocomplete::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px
}

.ui-autocomplete::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #F5F5F5;
    border-radius: 10px
}

.ui-helper-hidden-accessible {
    display: none
}
