/*setting*/
* {margin: 0; padding: 0;}
body {margin: 0; padding: 0;}
body {font-family: 'Open Sans', sans-serif;}
body {padding: 60px 0 0 0;}
h1, h2, h3, h4 {font-weight: 700;}
h5 {font-weight: 400;}
a {text-decoration: none !important;}
a {cursor: pointer !important;}
input, textarea {outline: none !important;}
.act {display: block !important;}
.none {display: none !important;}
.flex {display: flex !important;}
.show {visibility: visible;}
.hide {visibility: hidden;}
.zoom {
	-webkit-transform: scale(1.03); 
	-ms-transform: scale(1.03); 
	transform: scale(1.03);
	transition: transform 0.2s;
}
.container {
    max-width: 1200px; 
    margin: auto;
}
@media (max-width: 1440px) {
	.container {max-width: 1200px;}
}
@media (max-width: 991px) {
    body {padding: 0;}
	.container {padding: 0 15px;}
}


/* var */
:root {
    --color-main: #07601F;
    --font-size-txt: 18px;
    --font-size-title-block: 16px;
    --font-size-tab-text: 16px;
    --font-size-title-weight: 400;
    --font-size-title-height: 1.4rem;
    --font-size-title-margin: 5px 0 10px 0;
}
@media (max-width: 991px) {
	:root {
        --color-main: #07601F;
        --font-size-txt: 16px;
        --font-size-title-block: 14px;
        --font-size-tab-text: 14px;
        --font-size-title-weight: 400;
        --font-size-title-height: 1.2rem;
        --font-size-title-margin: 5px 0 10px 0;
    }
}


/* scroll to top */
.btnScroll {
	display: none;
	position: fixed;
	bottom: 50px;
	right: 50px;
	width: 50px;
	height: 50px;
	background: #000;
	border: none;
	opacity: 0.1;
	cursor: pointer;
}
.btnScroll img {
	width: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}
@media (max-width: 991px) {
	.btnScroll {
		bottom: 25px;
		right: 25px;
		width: 30px;
		height: 30px;
	}
	.btnScroll img {width: 20px;}
}


/* nav */
.nav {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
	width: 100%;
	height: 60px;
	background: #FFFBF9;
	z-index: 3;
	border-bottom: solid 1px #dcdcdc;
}
.nav > .container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
}
.nav .logo {
	display: flex;
	align-items: center;
}
.nav .logo h1 {
	font-size: 20px;
	font-weight: 400;
	margin-left: 25px;
}
.nav .logo img {
	width: 100px;
	height: auto;
	margin-bottom: -10px;
}
.nav_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 55%;
    margin-top: 4px;
}
.nav_menu a {
    text-transform: uppercase;
    color: #999;
    font-size: 16px;
}
.nav_menu a:hover {
    color: #000;
}
.btn {
    display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 10px 0 0;
}
.search_btn {
    display: block;
    background: url("../i/loupe.svg") no-repeat center;
    width: 17px;
    height: 17px;
    margin: 5px 25px 0 20px;
    filter: invert(50%);
}
.search {
	width: 0;
	margin: 0;
	padding: 0 15px 0 0;
	display: none;
}
.nav .search form {
	display: flex;
	align-items: center;
	position: relative;
}
.search_input_1 {
	height: 30px;
	padding: 0;
	margin: 0;
	border: none;
	padding: 0 10px 0 10px;
	background: #FFFBF9;
	border: solid 1px #dcdcdc;
	font-size: 16px;
	padding: 5px 10px;
}
.search_input_2 {
	font-size: 30px;
	display: block;
	background: none;
	transform: rotate(-45deg);
	cursor: pointer;
	border: none;
	position: absolute;
	right: 10px;
	color: #999;
	top: 42px;
	right: 15px;
}
#search {
    position: absolute;
    right: 0;
    top: 40px;
    width: 250px;
}
.menu {
    display: none;
    position: fixed;
    height: 100vh;
    left: 0;
    background: #eee;
    z-index: 5;
    padding: 5rem 0 5% 0;
    margin-top: -65px;
}
.menu a {
    display: block;
    color: #000;
    font-size: 18px;
    padding: 0 40px;
    margin: 0 0 15px 0;
    width: 100%;
}
.menu a img {
    width: 20px;
    height: auto;
}
.btn_menu {
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu_btn {
    display: block;
    width: 23px;
    height: 30px;
    position: relative;
    z-index: 4;
    margin-right: 10px;
}
.menu_btn div {
    width: 25px;
    height: 2px;
    margin: 7px 0;
    background: #999;
    border-radius: 4px;
}
.menu_btn div {
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menu_btn.open div:nth-child(2) {
    display: none;
}
.menu_btn.open div:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.menu_btn.open div:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.shadow {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.6;
}
@media screen and (max-width: 991px) {
    .nav {position: static;}
    .logo {padding-left: 15px;}
    .nav .logo img {width: 80px;}
    .nav_menu {display: none;}
    .btn {margin: 0;}
    .search {padding: 0 15px 0 15px;}
    .search_input_1 {
    	height: 35px;
    	margin: 0;
    	border: solid 1px #dcdcdc;
    	font-size: 14px;
    }
    .search_input_2 {
    	top: 5px;
    }
    #search {
        position: initial;
        right: 0;
        top: 0;
        width: 100%;
    }
}


/* home page top */
.viewport1 {
	padding: 40px 0 0 0;
}
.main_title {
	text-align: center;
	padding: 0 0 40px 0;
}
.main_title h1 {
	margin-bottom: 10px;
	font-family: 'Open Sans', sans-serif;
}
.main_title p {
	padding: 0 10%;
	font-size: var(--font-size-txt);
	line-height: 1.4em;
}
@media screen and (max-width: 991px) {
    .viewport1 {
        margin-top: -25px;
        padding: 40px 0 0 0;
    }
    .main_title {
    	padding: 0 0 20px 0;
    }
    .main_title p {
        font-size: var(--font-size-txt); 
        padding: 0;
    }
}


/* slider1 */
.slider1 {
    margin-top: 20px;
    opacity: 0;
    transition: 300ms ease;
}
.slider_page h2 {
    text-align: center;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 15px;
}
.slider_page {
    background: url("../i/back1.jpg") no-repeat center;
    margin: 0;
    padding: 30px 0;
    border-top: solid 1px #eee;
}
.slider1 img {
	max-width: 180px;
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 10px;
}
.slider1, .slider1 a, .slider1 a p {
    display: inline;
	font-size: var(--font-size-title-block);
    font-weight: 400;
    text-align: center;
    color: #000;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
@media screen and (max-width: 991px) {
    .owl-nav {display: none !important;}
}


/* viewport2 */
.viewport2 {
	background: #FFFBF9;
	padding: 40px 0;
	border-top: solid 1px #dcdcdc;
}
.viewport2 h2 {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	margin: 0 0 20px 0;
}
.albums {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.albums img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: solid 1px #eee;
}
.albums > a {
    display: block;
	width: 15%;
    margin-bottom: 20px;
}
.albums a h3, .albums a p, .albums a span {
	font-size: var(--font-size-title-block);
	font-weight: 400;
	text-align: center;
	color: #000;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	display: inline;
}
.album_title {
    text-align: center;
    margin: 10px 0 0 0;
    padding: 0 5px;
}
@media screen and (max-width: 991px) {
    .albums > a {width: 31%;}
    .albums, .albums a, .albums a h3, .albums a p, .albums a span {
        word-break: break-word;
        font-size: var(--font-size-title-block);
    }
}


/* viewport3 */
.viewport3 {
	background: url("../i/back1.jpg") no-repeat center;
	padding: 40px 0;
	border-top: solid 1px #dcdcdc;
}
.viewport3 h2 {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}
.names {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.names a {
	display: block;
	width: 15%;
	margin: 30px 0 0 0;
}
.names img {
	width: 100%;
	border-radius: 50%;
}
.names a h3 {
	font-size: var(--font-size-title-block);
	font-weight: 400;
	text-align: center;
	color: #000;
	margin: 5px 0 0 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}
@media screen and (max-width: 991px) {
    .names a {width: 31%;}
    .names a h3 {
        font-size: var(--font-size-title-block); 
        margin: 5px 0 0 0;
    }
}


/* footer */
footer {
	background: #FFFBF9;
	padding: 40px 0;
	border-top: solid 1px #dcdcdc;
}
.footer_link {
	text-align: center;
}
.footer_link h2 {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1.5em;
	color: #555;
	font-family: 'Open Sans', sans-serif;
}
.footer_link p, .footer_link a {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1.5em;
	color: #555;
	font-family: 'Open Sans', sans-serif;
}
.footer_link p {
    margin-top: 10px;
}
@media screen and (max-width: 991px) {
    .footer_link {display: block; text-align: center;}
    .footer_link h2 {font-size: 12px;}
    .footer_link p, .footer_link a {font-size: 12px;}
    .footer_link div:nth-child(2) {margin: 15px 0 0 0;}
}


/* page */
.page {
	padding: 40px 0;
	min-height: 800px;
}
.page_song_title {
    width: 100%;
    border-bottom: solid 1px #eee;
	margin: 0 0 20px 0;
}
.page_song_title p {
    margin: 0 0 15px 0;
    font-size: var(--font-size-title-block);
    color: #999;
}
.page h1 {
	padding: 0 0 5px 0;
	font-size: 28px;
	font-weight: 700;
	color: #555;
	font-family: 'Open Sans', sans-serif;
}
.page_song_title > span {
	margin: 0 0 0 5px;
	padding: 0 0 5px 0;
	font-size: 28px;
	font-weight: 700;
	color: #555;
	font-family: 'Open Sans', sans-serif;
}
.content span {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    white-space: break-spaces;
}
.content {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
.text {
    width: 70%;
    margin: 0 40px 0 0;
    box-sizing: border-box;
}
.text a {
    color: #000;
}
.public_list .text p, .public .text p {
    margin-bottom: 12px;
    font-size: var(--font-size-txt);
}
.war {
    display: block !important;
}
.nowar {
    display: none;
}
.warning18 {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #999;
    z-index: 3;
}
.warning18_btn {
    position: fixed;
    width: 30%;
    height: 20%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 3;
}
.warning18_btn p {
    margin: 0 0 15px 0;
    display: block;
    font-size: var(--font-size-txt);
}
.warning18_btn form input {
    margin: 0 5px;
    width: 80px;
    height: 35px;
    border: none;
    background: #555;
    color: #fff;
    font-size: var(--font-size-txt);
    cursor: pointer;
}
.warning_home {
    position: fixed;
    width: 30%;
    height: 20%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 30px;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 3;
    background: #fff;
}
.warning_home.flex {
    display: flex;
}
.warning_home a {
    display: block;
    margin: 0;
    padding: 10px 20px;
    border: none;
    background: #555;
    color: #fff;
    font-size: var(--font-size-txt);
    cursor: pointer;
}
@media screen and (max-width: 991px) {
    .warning18_btn, .warning_home {width: 70%; height: 50%;}
    .warning18 {top: 0;}
}


/* tab content */
.btn_tab {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.btn_tab_item {
    height: 25px;
    color: #555;
    font-weight: 700;
    font-size: 0.9rem !important;
    background: #fffbf9;
    border: solid 1px #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn_bo {
    display: none;
}
.btn_tab_item:hover {
    background: #eee;
    transition: 0.25s;
}
.tab table {
    width: 100%;
}
.tab table tbody {
    width: 100%;
}
.tab table tbody tr td {
    border-right: solid 1px #eee;
    border-left: solid 1px #eee;
    padding: 5px 10px;
    width: 50% !important;
    vertical-align: middle !important;
    font-family: 'Open Sans', sans-serif;
}
.tab table tbody tr td {
    border-bottom: solid 1px #eee;
}
.tab table tbody tr td:nth-child(2) {
    border-left: none;
}
.tab table tbody tr:nth-child(1) td {
    border-top: solid 1px #eee;
}
.tab table tbody tr, .tab table tbody tr td {
    font-size: var(--font-size-tab-text);
}
td {
    background: #fff;
}
td.empty {
    background: #f7f7f7;
}
tr:hover {
    background: #eee;
}


/* insert content */
.text_source {
    margin: 25px 0 0 0;
}
.text_source p {
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-title-block);
}
.tab_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 5px 0;
}
.author, .author_channel {
    width: 100%;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-title-block);
    margin: 3px 0 0 0;
}
.author_public {
    margin: 15px 0 0 0;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-title-block);
}
.date {
    margin: 5px 0 0 0;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-title-block);
}
.insert_title {
    width: 100%;
}
.insert_title h2 {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
    margin: 0 0 30px 0;
    color: #fff;
    background: #ddd;
}
.link_info {
    margin: 20px 0 10px 0;
}
.copyUrl {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 20px;
    width: fit-content;
    font-weight: 700;
    border: solid 1px #dcdcdc;
    border-radius: 25px;
    background: #fffbf9;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
}
.linkAll {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 20px;
    width: fit-content;
    border: solid 1px #dcdcdc;
    border-radius: 25px;
    background: #fffbf9;
}
.linkAll a, .copyUrl p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    color: #555;
}
.copyUrl img {
    width: 15px;
    height: 15px;
    margin: 0 0 0 10px;
}
.image {
    width: 28%;
    height: auto;
    margin: 0 0 20px 0;
}
.image div {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: solid 1px #eee;
}
.image_empty {
    max-width: 400px;
    width: 100%;
    height: auto;
    background: #999;
}
@media screen and (max-width: 991px) {
    .content {display: block;}
    .page {padding: 15px 0;}
    .page_song_title {margin: 0 0 20px 0;}
    .page span {font-size: 16px;}
    .page h1 {font-size: 20px; display: inline;}
    .text {width: 100%;}
    .text table tbody tr:nth-child(1) span {font-size: 16px; line-height: 1.1em}
    /* .text_source, .author, .author_channel {text-align: center;} */
    .image {margin: 30px 0 0 0; width: 100%;}
    .link_current_singer {display: flex; justify-content: center;}
    .link_current_singer a {margin: 0;}
    .page_song_title {display: block; border-bottom: none;}
    .page_song_title span {font-size: 20px;}
    .author, .author_channel {width: 100%;}
    .btn_tab {margin-bottom: 10px;}
    .linkAll a, .copyUrl p, .btn_tab_item {font-size: 0.8rem !important;}
    .copyUrl, .linkAll {margin: 0 0 10px 0; font-size: 0.8rem !important;}
    .btn_tab_item {
        font-size: 0.8rem !important; 
        margin-bottom: 5px;
        height: 18px;
    }
}


/* poster */
.poster p {
    font-size: var(--font-size-txt);
    font-weight: 400;
    text-align: center;
    color: #999;
    margin: 0;
    padding: 0 5px;
    font-family: 'Open Sans', sans-serif;
}


/* banner */
.banner {
    max-width: 400px;
    width: 28%;
    height: auto;
    margin: 0 0 20px 0;
    position: sticky;
    top: 80px;
}
.banner a {
    max-width: 400px;
    width: 100%;
    height: auto;
}
.banner a img {
    max-width: 400px;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 991px) {
    .banner {
        margin: 30px 0 0 0;
        width: 100%;
        position: static;
    }
}


/* list of song */
.list {
    counter-reset: list;   
}
.list p, .list a {
    font-size: var(--font-size-txt);
    line-height: 1.8rem;
    display: inline-block;
}
.list > li::before {
    counter-increment: list;
    content: counter(list) ". ";
    margin-right: 5px;
}
.list li, .list_all li {
    list-style-type: none;    
}
@media screen and (max-width: 991px) {
    .list p {font-size: 14px;}   
}


/* page album */
.album_description {
    padding: 0 0 15px 0;
    margin: 0 0 25px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-txt);
    border-bottom: solid 1px #eee;
}
.album_description div, .singer_description a, .info_source {
    padding: 10px 0 0 0;
    color: #999;
}
.album_description > .info_source > p > a, .album_description > .info_source > p {
    color: #999;
}

.all_album_page {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.all_album_page img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 1px solid #eee;
}
.all_album_page > a {
    display: block;
	width: 23%;
	font-size: 16px;
	font-weight: 400;
	color: #888;
	margin: 0 2% 25px 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	display: inline;
	text-align: center;
}
.all_album_page > a:nth-of-type(4n) {
    margin: 0 0 25px 0;
}
.all_album_page a h3, .all_album_page a p, .all_album_page a span {
	font-size: var(--font-size-title-block);
	font-weight: 400;
	text-align: center;
	color: #000;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	display: inline;
	word-break: inherit;
}
.album_title {
    text-align: center;
    margin: 5px 0 0 0;
    padding: 0 5px;
}
@media screen and (max-width: 991px) {
    .all_album_page > a {width: 31%;}
    .all_album_page > a {font-size: var(--font-size-txt);}
    .all_album_page > a {margin: 0 3.5% 25px 0;}
    .all_album_page > a:nth-of-type(4n) {margin: 0 3.5% 25px 0;}
    .all_album_page > a:nth-of-type(3n) {margin: 0 0 25px 0;}
}


/* page singer */
.singer_description {
    padding: 0 0 25px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-txt);
}
.singer_description div, .singer_description a, .info_source {
    padding: 10px 0 0 0;
    color: #999;
}


/* page all singer */
.list_singer h2 {
    font-size: var(--font-size-title-block);
    font-weight: var(--font-size-title-weight);
    line-height: var(--font-size-title-height);
    margin: var(--font-size-title-margin);
    text-align: center;
}
.ep_mark {
    font-size: var(--font-size-title-block);
    font-weight: var(--font-size-title-weight);
    line-height: var(--font-size-title-height);
}


/* search result page */
.simplesearch-results {
    display: none;
}
.simplesearch-result {
    margin: 0 0 15px 0;
}
.simplesearch-paging {
    margin: 30px 0 15px 0;
    display: flex;
}
.simplesearch-paging > span, .simplesearch-paging > span > a {
    display: flex;
}
.simplesearch-page {
    margin: 0 5px;
}
.simplesearch-current-page {
    font-weight: 700;
}
.simplesearch-result-pages {
    margin-right: 15px;
}
.simplesearch-highlight {
    font-weight: 700;
    color: red;
}



/* pagination */
.pagination_block {
    margin: 20px 0 0 0;
    width: 100%;
}
.pagination {
    display: flex;
    padding-top: 15px;
}
.pagination li {
    list-style-type: none;
    margin: 0 5px 0 0;
    padding: 5px 10px;
}
.pagination li.active {
    border: solid 1px #ccc;
}
/*
.pagination li:nth-child(2) {
    display: none;
}
.pagination li:nth-child(5) {
    display: none;
} */


/* crumbs */
.crumbs {
    position: absolute;
    padding: 10px 0 0 0;
}
.crumbs ol {
    color: #999;
    font-size: 14px;
    line-height: 1rem;
} 
.crumbs ol li {
    list-style-type: none;
    display: inline;
    color: #999;
    padding: 0 5px;
    font-size: 14px;
    line-height: 1rem;
}
.crumbs ol li:first-of-type {
    padding: 0 5px 0 0;
}
.crumbs ol li a {
    color: #999;
    font-size: 14px;
    line-height: 1rem;
} 
@media screen and (max-width: 991px) {
    .crumbs {
        position: static;
        padding: 10px 0 0 0;
    }
    .crumbs ol {
        font-size: 12px;
    }
    .crumbs ol li {
        font-size: 12px;
    }
    .crumbs ol li a {
        font-size: 12px;
    } 
}


/* contact */
.feedback {
	padding: 0;
	margin: 0 0 20px 0;
	width: 100%;
}
.feedback span {
	padding: 15px 0 0 0;
	font-size: 14px;
	display: block;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	color: #666;
	white-space: initial;
}
.feedback span a {
    color: blue;
}
.feedback input, textarea {
	width: 100%;
	margin: 5px 0;
	padding: 8px 15px;
	border: 1px solid #CFCFCF;
	box-sizing: border-box;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}
.feedback .btn {
	background: #FFFBF9;
	color: #000;
	cursor: pointer;
}


/* success */
.success {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.success_b {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
    padding: 15px;
    width: 30%;
    height: 30%;
    border: solid 1px #CFCFCF;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 20%);
}
.success img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}
.success_con div {
    display: flex;
    justify-content: center;
    text-align: center;
}
.submit_request {
    cursor: pointer;
}
@media screen and (max-width: 991px) {
    .success_b {
        width: 80%;
        height: 40%;
    }
}


/* public */
.public_link {
    display: block;
    border: solid 1px #eee;
    padding: 15px;
    margin: 0 0 15px 0;
}
.public_link h3 {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 5px 0;
}
.public_link p {
    font-size: var(--font-size-text);
    font-family: 'Open Sans', sans-serif;
    color: #999;
}
.public_link p:last-of-type {
    font-size: var(--font-size-text);
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #999;
    margin: 5px 0 0 0;
}


/* popup1 */
.popup1 {
    display: none;
    width: 12%;
    height: 45%;

    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fffbf9;
    border: solid 1px #dcdcdc;
    z-index: 1;
    padding: 15px;
}
#popup1_exit {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 18px;
    line-height: 18px;
    color: #999;
}


/* page_404 */
.page_404 img {
    width: 100%;
    height: auto;
}









