@import './common/variables.css';

/*-----------------
	General
-----------------------*/

body {
	font-family: 'Open Sans', sans-serif !important;
	background-color: #fff !important;
	color: #333333 !important;
	position: relative;
	overflow-x: hidden;
}

ul,
ol {
	padding-left: 0;
	padding-right: 0;
	list-style: none;
	margin-bottom: 20px;
}

ul ul,
ol ul,
ul ol,
ol ol {
	padding-left: 20px;
}

a:focus,
a:hover {
	text-decoration: none;
}

a {
	transition: all 0.15s linear 0s;
	-moz-transition: all 0.15s linear 0s;
	-o-transition: all 0.15s linear 0s;
	-ms-transition: all 0.15s linear 0s;
	-webkit-transition: all 0.15s linear 0s;
	color: #565656;
}

a,
a:active,
a:focus,
input,
input:active,
input:focus,
button,
button:active,
button:focus,
select,
select:active,
select:focus,
.bootstrap-select .btn,
.bootstrap-select .btn:active,
.bootstrap-select .btn:focus {
	outline: 0 !important;
}

::-webkit-input-placeholder {
	color: #51556c;
}

:-moz-placeholder {
	color: #51556c;
}

::-moz-placeholder {
	color: #51556c;
}

:-ms-input-placeholder {
	color: #51556c;
}

.btn-primary {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active {
	background-color: var(--secondary);
	border-color: var(--secondary);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
	background-color: #6db6f5;
	border-color: #6db6f5;
}

.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary.active[disabled],
.btn-primary.focus[disabled],
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
	background-color: var(--primary);
	border-color: var(--primary);
}

.form-control {
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #737475;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-control:focus {
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #0e4dc9;
}

input[type=text],
input[type=password] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.badge-primary {
	background-color: #bbadfc;
	border-color: #bbadfc;
}

.badge-success {
	background-color: #5cb85c;
	border-color: #5cb85c;
}

.badge-info {
	background-color: #00bcd4;
	border-color: #00bcd4;
}

.badge-warning {
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}

.badge-danger {
	background-color: #d9534f;
	border-color: #d9534f;
}

.badge-white {
	background-color: #fff;
	border-color: #fff;
	color: #51556c;
}

.badge-green {
	background-color: #166534;
	border-color: #166534;
}

textarea {
	resize: vertical;
}

.radio {
	padding-left: 20px;
}

.radio label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}

.radio label:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out;
	transition: border 0.15s ease-in-out;
}

.radio label:after {
	display: inline-block;
	position: absolute;
	content: " ";
	width: 11px;
	height: 11px;
	left: 3px;
	top: 3px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #555555;
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
	opacity: 0;
}

.radio input[type="radio"]:focus+label:before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.radio input[type="radio"]:checked+label:after {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
	opacity: 0.65;
}

.radio input[type="radio"]:disabled+label:before {
	cursor: not-allowed;
}

.radio.radio-inline {
	margin-top: 0;
}

.radio-primary input[type="radio"]+label:after {
	background-color: #6db6f5;
}

.radio-primary input[type="radio"]:checked+label:before {
	border-color: #6db6f5;
}

.radio-primary input[type="radio"]:checked+label:after {
	background-color: #6db6f5;
}

.radio-danger input[type="radio"]+label:after {
	background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label:before {
	border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label:after {
	background-color: #d9534f;
}

.radio-info input[type="radio"]+label:after {
	background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label:before {
	border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label:after {
	background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label:after {
	background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label:before {
	border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label:after {
	background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label:after {
	background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label:before {
	border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label:after {
	background-color: #5cb85c;
}

/*-----------------
	header
-----------------------*/

.header {
	background-color: white;
	height: auto;
}

.content {
	background-color: #fff;
}

/*-----------------
	Banner
-----------------------*/

.parallax {
	background-attachment: fixed;
	background-position: 50% 0;
	background-size: cover;
	width: 100%;
	min-height: 400px;
}

.home-banner {
	position: relative;
	background-color: #fff;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #ededed;
	overflow: hidden;
}

.home-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../images/common/home/banner.jpg");
	background-position: center center;
	background-size: cover;
	opacity: 0.8;
	z-index: 0;
}

.home-banner > * {
	position: relative;
	z-index: 1;
}

.logo {
	height: auto;
	max-width: 120px;
	transition: all 0.2s linear 0s;
	width: auto;
}

.logo:hover {
	transform: rotate(-27deg);
	-webkit-transform: rotate(-27deg);
	-moz-transform: rotate(-27deg);
	-o-transform: rotate(-27deg);
}

.banner-box {
	background: transparent;
	height: auto;
	position: relative;
	min-height: 400px;
}

.banner-box .banner-content {
	position: absolute;
	width: 77%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	align-content: center;
}

.banner-box .banner-content input[type="text"] {
	height: 65px;
	margin-top: 0px;
	font-size: 21px;
	padding: 15px;
	border: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.banner-box .banner-content input[type="submit"] {
	height: 100%;
	border: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: url("../images/common/home/search.png") no-repeat center center;
	background-color: lightgray;
}


.quicklinks-popular {
	margin-top: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
}

.quicklinks-popular ul {
	display: inline-flex;
	gap: 10px;
	margin-left: 5px;
}

.quicklinks-popular a {
	color: #fff;
	border: 1px solid #fff;
	padding: 2px 14px;
	background: rgba(255, 255, 255, 0.32);
	font-size: 14px;
	text-decoration: none;
}

/*-----------------
	Daily Figure
-----------------------*/

.daily-figure {
	background: #dde4f7;
	border-bottom: 1px solid #bdccf3;
	border-top: 1px solid #dadada;
	padding: 35px 0;
}

.feature-box {
	background: var(--primary);
	border-radius: 3px;
	padding: 10px;
	text-align: center;
}

.feature-box .title {
	color: #fff;
	font-size: 13px;
	line-height: normal;
	margin-top: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.feature-box p {
	color: #fff;
	font-size: 12px;
	line-height: normal;
	margin: 10px 0 0;
	min-height: 85px;
}

/*-----------------
	Location Gigs
-----------------------*/

.location-gigs {
	padding: 50px 0;
	background-color: #e4eafa;
	border-top: 1px solid #ebf0fb;
}

/*-----------------
	Latest Gigs
-----------------------*/

.latest-gigs {
	padding: 50px 0;
}

.text-ellipsis {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.latest-title {
	color: var(--font);
	font-weight: 600;
	font-size: 24px;
	float: left;
	margin-bottom: 20px;
	margin-top: 0;
}

.latest-title>img {
	margin-right: 5px;
}

.product {
	background-color: #fff;
	border: 5px solid var(--primary);
	border-radius: 10px;
	float: left;
	padding: 5px;
	position: relative;
	width: 100%;
	height: fit-content;
}

.product:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product img {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.product:hover .product-img img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.product-img>a {
	overflow: hidden;
}

.product-img>a>img {
	float: left;
	width: 100%;
	height: auto;
}

.product-img {
	float: left;
	height: 138px;
	overflow: hidden;
	width: 100%;
	position: relative;
}

.product-detail {
	float: left;
	padding: 10px 5px 5px;
	width: 100%;
}

.product-name {
	/* min/max-heightだとタイトルの行数で高さが変わり同じ行のカードと高さがズレるため固定値にしている */
	height: 50px;
	overflow: hidden;
	cursor: pointer;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.product-name>a {
	font-size: 15px;
	max-height: 55px;
	overflow: hidden;
	text-align: justify;
	color: #7151f9;
	line-height: 15px;
}

.author {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.author-img {
	display: inline-block;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 120px;
}

.author-img>img {
	border: 1px solid #ededed;
	border-radius: 50%;
	height: 30px;
	margin-right: 5px;
	width: 30px;
}

.author-img>a img {
	border: 1px solid #ededed;
	border-radius: 50%;
	height: 30px;
	margin-right: 5px;
	width: 30px;
}

.author-img>a {
	color: var(--font);
	font-size: 13px;
	line-height: 30px;
	display: inline-block;
	float: left;
}

.author-name {
	display: block !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 84px;
}

.price-box2 {
	position: absolute;
	right: -11px;
	text-align: center;
	top: 5px;
}

.price-inner {
	clear: both;
	margin: 0px auto;
	min-width: 52px;
	position: relative;
	z-index: 90;
	float: right;
}

.rectangle {
	background-color: var(--primary);
	border-radius: 5px 5px 0;
	height: 30px;
	min-width: 52px;
	position: relative;
	float: left;
	z-index: 100;
}

.rectangle h2 {
	font-size: 30px;
	color: #fff;
	padding: 5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	margin: 0;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	transition: all 0.25s ease-in-out 0s;
}

.price-box {
	background: url(../images/tag.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
	height: 42px;
	padding: 7px;
	position: absolute;
	right: -17px;
	top: 5px;
	width: 56px;
	text-align: center;
}

.product-price {
	color: #fff;
	cursor: default;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.25s ease-in-out 0s;
	text-align: center;
}

.product-det {
	width: 100%;
	float: left;
	margin-top: 15px;
}

.user-country {
	background: url('../images/common/marker.png') no-repeat scroll left center rgba(0, 0, 0, 0);
	color: #85887F;
	font-weight: 600;
	font-size: 13px;
	padding-left: 20px;
}

/*-----------------
	Clients
-----------------------*/

.clients-area {
	background-color: #fff;
	padding: 30px 0;
}

.client-title {
	margin-bottom: 30px;
	margin-top: 0;
}

.client-title>span {
	background-image: url("../images/common/home/client.png");
	background-repeat: no-repeat;
	background-position: left center;
	color: var(--font);
	font-weight: 600;
	font-size: 24px;
	padding: 5px 5px 5px 45px;
}

.clients-area .carousel-direction {
	padding: 0;
}

/*-----------------
	Footer
-----------------------*/

.footer {
	background-color: var(--primary);
}

.footer-top {
	padding: 40px 0;
}

.copyright p {
	padding: 25px 0;
	color: #d4d4d4;
	font-size: 12px;
	margin-bottom: 0;
}

.copyright a {
	color: white;
}

.to-top {
	z-index: 9999;
	width: 40px;
	height: 40px;
	font-size: 25px;
	line-height: 35px;
	text-align: center;
	position: fixed;
	bottom: -100px;
	right: 20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	background-color: var(--primary);
	border: solid 2px #CBC4FD;
	border-radius: 4px;
	color: #fff;
}

.to-top:hover {
	background-color: #fff;
	border-color: #bbadfc;
	color: #bbadfc;
}

/*-----------------
	Login Popup
-----------------------*/

.custom-popup button.close {
	background: #989898;
	border: 0 none;
	border-radius: 50%;
	color: #fff;
	font-size: 14px;
	height: 16px;
	opacity: 1;
	padding: 0;
	position: absolute;
	right: 10px;
	text-shadow: inherit;
	top: 10px;
	width: 16px;
	z-index: 99;
}

.custom-popup .modal-header {
	border: 0;
}

.custom-popup .modal-header h4 {
	color: #565656;
	font-size: 32px;
	font-weight: 600;
}

.custom-popup .modal-header h5 {
	color: #565656;
	font-size: 28px;
	font-weight: 600;
}

.custom-popup .form-group>label {
	color: #565656;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.custom-popup .form-control {
	background-color: #e7e7e7;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
}

.custom-popup .form-control:focus {
	border-color: var(--primary);
	box-shadow: none;
}

.custom-popup .modal-footer.text-center {
	background-color: #eee;
	border: 0;
	border-radius: 0 0 6px 6px;
	text-align: center;
	padding: 15px 60px;
}

.custom-popup .modal-footer a {
	color: #bbacfc;
}

/*-----------------
	Register Popup
-----------------------*/

.member-text {
	color: var(--font);
	font-size: 13px;
	margin: 0;
	text-align: center;
}

.member-text>a {
	color: var(--primary) !important;
	cursor: pointer;
}

.custom-popup .modal-footer.text-left {
	background-color: #eee;
	border: 0 none;
	border-radius: 0 0 6px 6px;
	padding: 15px 60px;
	text-align: left;
}

.custom-popup .modal-footer.text-left .modal-footer-text {
	text-align: right;
}

.line hr {
	margin: 30px 0;
}

/*-----------------
	Sell Gigs
-----------------------*/

.sell-banner {
	background: rgba(0, 0, 0, 0) url("../images/common/listing/sell-slider.jpg") no-repeat scroll center center / cover;
	height: 437px;
	width: auto;
}

.sell-banner-cont {
	padding-top: 130px;
	text-align: center;
}

.sell-banner-cont h2 {
	margin: 0;
	font-family: Apple_casual;
	font-size: 50px;
	color: #fff;
}

div.create-gig>button.btn-yellow,
form.sell-service-form button.btn-yellow {
	background-color: #e9bf53;
	box-shadow: 0 4px 0 #cdad62;
	color: #fff;
	font-weight: bold;
	font-size: 17px;
	padding: 10px 50px;
}

div.create-gig>button.btn-yellow:active,
form.sell-service-form button.btn-yellow:active {
	background-color: #e9bf53;
	box-shadow: 0 4px 0 #cdad62;
	color: #fff;
	font-weight: bold;
	font-size: 17px;
	padding: 10px 50px;
	box-shadow: none;
}

.create-gig {
	margin-top: 20px;
}

form.sell-service-form button.listing-submit-btn {
	padding-left: 80px;
	padding-right: 80px;
}

.milestone-area {
	background: #e5e9f9;
	box-shadow: 0 1px 0 #c7cde7;
	height: 129px;
	position: relative;
}

.circle-bg {
	border: 10px solid #e5e9f9;
	border-radius: 50%;
	display: inline-block;
	height: 60px;
	line-height: 37px;
	width: 60px;
}

.orange-bg {
	background-color: #f8c04a;
}

.miles-title {
	color: #9094a1;
	font-family: Apple_casual;
	text-transform: uppercase;
}

.green-bg {
	background-color: #42e0da;
}

.post-gig-area {
	padding: 60px 0;
}

.post-gig-title {
	color: #697084;
	margin: 0;
	font-size: 34px;
	font-weight: 600;
}

.sub-title {
	color: #9fa4b2;
	font-size: 13px;
	margin: 8px 0 41px;
}

.sell-service-form {
	width: 100%;
}

.sell-service-form>.form-group {
	margin-bottom: 30px;
}

.label-title {
	color: #6e6e6e;
	font-size: 14px;
}

.name-block {
	background-color: #e7e7e7;
	border-radius: 4px;
	display: inline-block;
	width: 100%;
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
}

.name-input {
	float: left;
	width: 82%;
}

.sell-service-form .form-control {
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	background-color: #e7e7e7;
	border: none;
}

.name-block .form-control {
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

.name-block .form-control.gig-name {
	background-color: inherit;
	border-color: transparent;
	width: 100%;
	box-shadow: inherit;
}

.currency {
	float: right;
	padding: 3px 5px;
}

.price-note {
	display: inline-block;
	margin-top: 8px;
	padding: 10px 14px;
	background-color: #f4f4f4;
	border-radius: 6px;
	text-align: left;
}

.price-note small {
	line-height: 1.7;
}

.name-block .form-control.amount {
	background-color: #fff;
	border-color: transparent;
	border-radius: 4px;
	height: 28px;
	width: 50px;
	padding: 0 5px;
	box-shadow: inherit;
	border-bottom: 2px solid #c7c7c7;
}

.photos-upload {
	background: url("../images/common/listing/photo-upload.png") no-repeat scroll center top;
	cursor: pointer;
	float: left;
	padding-top: 40px;
	width: 33.3333%;
	position: relative;
	text-align: center;
}

.photos-upload span {
	color: #63b545;
}

.gig-img-upload {
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	cursor: pointer;
}

.embedded {
	background: url("../images/common/listing/video-upload.png") no-repeat scroll center top;
	cursor: pointer;
	float: left;
	padding-top: 40px;
	width: 33.3333%;
	position: relative;
	text-align: center;
}

.embedded h4 {
	color: #5ba3d8;
	font-size: 14px;
	margin: 0 0 5px;
	font-style: italic;
}

.embedded p {
	color: #5ba3d8;
	font-size: 12px;
	margin: 0;
}

.embedded-url {
	float: left;
	margin-top: 15px;
	width: 100%;
}

.error_msg {
	color: red;
}

.close-offer {
	cursor: pointer;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin: 8px 8px 0 0;
	border-radius: 50%;
	background-color: #dcdcdc;
	color: #8a8a8a;
	font-size: 11px;
	transition: background-color .15s ease, color .15s ease;
}

.close-offer:hover {
	background-color: #f6b8b8;
	color: #d64545;
}

.name-input2 {
	float: left;
	width: 58%;
}

.name-block2 .form-control.amount2 {
	background-color: #fff;
	border-color: transparent;
	border-radius: 4px;
	box-shadow: inherit;
	height: 28px;
	padding: 0 4px;
	width: 30px;
	border-bottom: 2px solid #c7c7c7;
}

.name-block2 .form-control {
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

.name-block2 .form-control.amount {
	background-color: #fff;
	border-color: transparent;
	border-bottom: 2px solid #c7c7c7;
	border-radius: 4px;
	height: 28px;
	width: 50px;
	padding: 0 5px;
	box-shadow: inherit;
}

.name-block2 .form-control.gig-name {
	background-color: inherit;
	border-color: transparent;
	width: 100%;
	box-shadow: inherit;
}

.name-block2 {
	background-color: #e7e7e7;
	border-radius: 4px;
	display: inline-block;
	float: right;
	width: 100%;
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
}

.super-fast {
	background-color: #f0abac;
	border-radius: 2px;
	color: #df5c5e;
	float: left;
	font-size: 10px;
	font-weight: bold;
	padding: 3px 8px;
	text-transform: uppercase;
}

.name-block2.superfast-block {
	width: 83%;
}

/*-----------------
	Gig View
-----------------------*/

.product-header {
	background: #51556c url("../images/common/purchase_detail/gigheader.png") no-repeat scroll 0 0 / cover;
	min-height: 133px;
	padding: 15px 0;
}

.product-header .breadcrumbs a {
	color: #fff;
	font-size: 13px;
}

.product-header .breadcrumbs i {
	margin: 0 10px;
	color: #f2f6f7;
	font-size: 10px;
}

.product-header h2 {
	color: #fff;
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 10px;
}

.gig-detail {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.tags {
	display: inline-block;
	margin-top: 10px;
}

.tags a {
	display: inline-block;
	font-size: 10px;
	margin-top: 4px;
	padding: 3px 5px;
	background: #c3c3c3;
	border-radius: 4px;
	font-weight: 600;
	color: #fff;
}

/*-----------------
	Buy Service
-----------------------*/

.header-title {
	color: #545F71;
	font-size: 35px;
	font-weight: bold;
	margin: 0;
}

.header-title>span,
.header-title>i {
	color: #545F71;
	font-size: 16px;
	font-weight: normal;
}

.buy-section .product {
	border: 5px solid var(--primary);
	margin-bottom: 40px;
	min-height: 290px;
}

.favorite {
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 9px 0 rgba(50, 50, 50, 0.2);
	text-decoration: none;
	font-size: 18px;
	height: 30px;
	width: 30px;
	text-align: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 5px;
	top: 5px;
	display: none;
	color: var(--secondary);
}

.favorite:hover {
	color: #f00;
}

.favorite:focus {
	color: #bbadfc;
}

.product:hover .favorite {
	display: inline-flex;
}

.favorite.favorited {
	color: #f00;
}

.favorite,
.favorite:hover,
.favorite:focus {
  text-decoration: none;
}

.favorite a {
  text-decoration: none;
}

.buy-section .product-name>a {
	color: var(--primary);
}

.buy-section .rectangle {
	background-color: var(--primary);
}

/*-----------------
	Favorite
-----------------------*/

.inner-title {
	color: #545F71;
	font-weight: 600;
	margin: 0 0 30px;
}

.favorite-section .product {
	border: 5px solid var(--primary);
	margin-bottom: 40px;
	min-height: 290px;
}

.favorite-section .product-name>a {
	color: #71778b;
}

.favorite-section .rectangle {
	background-color: var(--primary);
}

/*-----------------
	Messages
-----------------------*/

.page-title {
	color: var(--font);
	font-weight: bold;
	font-size: 35px;
	margin: 0;
}

.msg-section .tab-content {
	background-color: #fafafa;
}

.msg-list {
	height: 480px;
	margin: 0;
	overflow: auto;
}

.msg-list>.list-group-item {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	margin-bottom: 5px;
	min-height: 61px;
}

.msg-list>.list-group-item.active {
	background-color: var(--primary);
	border-color: var(--primary);
}

.msg-user-name {
	color: #565656;
	font-weight: 600;
	font-size: 13px;
}

.time-text {
	color: #abb1b9;
	font-size: 12px;
}

.msg-text {
	color: #868b92;
	font-size: 13px;
	margin: 0;
}

.msg-list>.list-group-item.active .msg-text {
	color: #fff;
	min-height: 19px;
}

.msg-list>.list-group-item.active .time-text,
.msg-list>.list-group-item.active .msg-user-name {
	color: #fff;
}

.msg-section .panel {
	border: 1px solid #ddd;
	box-shadow: unset;
}

.msg-section .panel-heading {
	background-color: #f5f5f5;
	min-height: 66px;
	border-bottom: 1px solid #ddd;
}

.avatar {
	border-radius: 100px;
	display: inline-block;
	position: relative;
	vertical-align: bottom;
	white-space: nowrap;
	width: 40px;
}

.link>button {
	background-color: inherit;
	border: 0 none;
	line-height: normal;
	padding: 0;
}

.msg-progress {
	height: 5px;
}

.msg-upload {
	background-color: #fff;
	border-radius: 5px;
	font-size: 13px;
	margin-bottom: 10px;
	min-height: 50px;
	padding: 10px;
}

.msg-upload-img {
	clear: both;
	padding: 5px;
}

.msg-section .tab-list ul>li.active,
.msg-section .tab-list ul>li.active>a {
	background-color: #fafafa;
}

.msg-section .form-control {
	border: 1px solid #ddd;
	height: 34px;
}

#close_btn {
	display: none;
}

/*-----------------
	Notification
-----------------------*/

.notification-section .tab-content {
	background-color: #fafafa;
	min-height: 334px;
}

.notify-content {
	display: block;
	padding: 10px 40px 10px 15px;
}

.notify-content>a {
	font-weight: 400;
}

.notify-content>img {
	margin-right: 5px;
}

/*-----------------
	Profile
-----------------------*/

.profile-section {
	background-color: var(--secondary);
	padding: 35px 0;
}

.breadcrumb.menu-breadcrumb {
	background-color: inherit;
	color: #545F71;
	font-size: 13px;
	margin: 0 0 15px;
	padding: 0;
}

.breadcrumb.menu-breadcrumb a {
	color: #545F71;
	font-size: 13px;
	text-decoration: none;
}

.product-header .breadcrumb.menu-breadcrumb a,
.product-header .breadcrumb.menu-breadcrumb>.active {
	color: #fff;
}

.breadcrumb.menu-breadcrumb>.active {
	color: #545F71;
	font-size: 13px;
}

.breadcrumb.menu-breadcrumb>li+li:before {
	padding: 0;
	content: none;
}

.breadcrumb.menu-breadcrumb>li {
	margin-right: 10px;
}

.menu-breadcrumb i {
	margin-left: 10px;
	color: #545F71;
	font-size: 10px;
}

.product-header .menu-breadcrumb i {
	color: #f2f6f7;
}

.user-image {
	float: left;
	margin-right: 20px;
	position: relative;
	width: 150px;
}

.user-image>img {
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.user-details {
	float: left;
	width: 780px;
}

.user-name {
	color: #545F71;
	float: left;
	font-size: 36px;
	font-weight: 600;
	margin: 0;
}

.user-category {
	float: left;
	margin: 0 10px;
}

.user-contact {
	float: left;
	width: 100%;
}

.user-contact .list-inline {
	margin-left: 0;
	margin-bottom: 10px;
}

.user-contact .list-inline li {
	padding-left: 0;
	padding-right: 30px;
	color: #fff;
	font-size: 18px;
}

.contact-list a {
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.user-description {
	color: #fff;
	float: left;
	width: 100%;
}

.user-language {
	color: #fff;
	float: left;
	width: 100%;
}

.top-pagination {
	float: right;
	margin-bottom: 20px;
}

.widget-box {
	background-color: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	padding: 15px;
}

.widget-box h4 {
	color: var(--primary);
	font-size: 20px;
	margin: 0;
}

.widget-box h2 {
	font-size: 24px;
	margin: 0;
	color: var(--font);
	font-weight: bold;
}

.change-img-text {
	background-color: rgba(33, 33, 33, 0.7);
	color: #fff;
	display: none;
	font-weight: bold;
	height: 100%;
	padding-top: 50px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
}

.profile-gigs .product {
	margin-bottom: 40px;
	min-height: 286px;
}

/*-----------------
	Profile Settings
-----------------------*/

.tab-section {
	background-color: var(--secondary);
}

.tab-list {
	float: left;
	width: 100%;
}

.tab-list ul {
	float: left;
	margin: 0;
	width: 100%;
	padding: 0;
}

.tab-list ul>li {
	float: left;
	height: 50px;
	max-height: 50px;
	padding-top: 15px;
}

.tab-list ul>li>a {
	background-color: var(--primary);
	border-right: 1px solid var(--secondary);
	color: #fff;
	float: left;
	font-size: 13px;
	padding: 8px 0 7px;
	text-align: center;
	width: 220px;
	min-height: 35px;
	text-decoration: none;
}

.tab-list ul>li:last-child a {
	border-right: 0;
}

.tab-list ul>li.active {
	background-color: #e5e9f9;
	padding: 0;
	text-align: center;
	width: 280px;
}

.tab-list ul>li.active>a {
	background-color: #e5e9f9;
	border: 0;
	color: var(--font);
	display: block;
	font-size: 20px;
	padding: 10px 0;
	width: 100%;
	font-weight: 600;
}

.tab-content {
	background-color: #e5e9f9;
	padding: 50px 0;
}

.ui-widget-content {
	max-height: 300px;
	overflow-y: scroll;
}

/*-----------------
	Pagination
-----------------------*/

.pagination {
	margin: 0;
}

.pagination>li {
	width: 30px;
	text-align: center;
}

.pagination>li>a {
	color: #545F71;
	padding: 3px 10px;
	text-decoration: none;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
	background-color: #51556c;
	color: #fff;
	border-radius: 3px;
}

.pagination>li>a:hover,
.pagination>li>a:focus {
	border-color: var(--primary);
	background-color: var(--primary);
	color: white;
	border-radius: 3px;
}

.pagination>.active>a,
.pagination>.active>a:hover,
.pagination>.active>a:focus {
	background-color: #51556c;
	color: #fff;
}

.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
	color: #232323;
	background-color: transparent;
}

/*-----------------
	Purchases
-----------------------*/

.tab-section.grey-bg .tab-list ul>li.active>a .badge-white {
	background-color: #bbadfc;
	border-color: #bbadfc;
	color: #fff;
}

.tab-section.grey-bg .tab-list ul>li>a .badge-white {
	margin-left: 10px;
}

.tab-content.grey-bg {
	background-color: #fafafa;
}

.tab-section.grey-bg .tab-list ul>li.active>a {
	background-color: #fafafa;
}

.tab-section.grey-bg .tab-list ul>li.active {
	background-color: #fafafa;
}

.table-responsive table thead tr,
.table-responsive table tbody tr {
	background-color: #fff;
	border: 1px solid #e7e7e7;
}

.table-responsive table td {
	color: #565656;
	font-size: 14px;
	line-height: 20px;
	vertical-align: middle;
	white-space: nowrap;
}

.table>thead>tr>th {
	border-bottom: 1px solid #ddd;
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
	border-bottom-width: 1px;
}

.pro_img {
	float: left;
	padding-right: 10px;
}

.product-name2 {
	color: #565656;
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.order_date {
	color: #777;
	font-size: 12px;
}

.order-table .label {
	display: inline-block;
	min-width: 70px;
	padding: 5px;
}

/*-----------------
	Purchase Details Popup
-----------------------*/

.order-popup .modal-content {
	background-color: #fafafa;
}

.order-status {
	color: #fff;
	display: block;
	float: right;
	padding: 5px;
	text-align: center;
	width: 150px;
	border-radius: 3px;
}

.status-new {
	background-color: #5dd4bc;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
	background-color: #fff;
	border: 1px solid #e7e7e7;
}

.grand-total {
	color: var(--primary) !important;
	font-size: 16px !important;
	font-weight: 600;
}

.order-title {
	color: #565656;
	font-size: 20px;
	margin-top: 0;
	text-decoration: underline;
}

.order-popup .user-details {
	width: auto;
}

.order-popup .user-name {
	color: #565656 !important;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
}

.order-popup .user-contact .list-inline {
	margin-bottom: 0;
}

.order-popup .user-contact .list-inline li {
	color: #565656;
	font-size: 14px;
	padding-right: 15px;
}

.order-popup .user-contact .list-inline li:last-child {
	padding-right: 0;
}

.order-popup .contact-list a {
	color: #fff !important;
	font-size: 12px;
}

.order-popup table {
	margin-top: 15px;
}

.total {
	font-size: 16px;
	font-weight: 600;
}

.btn-border {
	border-bottom: 2px solid #8c81bd;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.11);
}

/*-----------------
	Checkout Popup
-----------------------*/

.custom-popup.order-popup .modal-body {
	padding: 15px;
}

.custom-popup.order-popup .modal-footer.text-left {
	padding: 15px;
}

.order-popup .text-ellipsis {
	width: 310px;
}

.payment-method>img {
	margin: 0 30px 0 20px;
}

#payment-method {
	margin-bottom: 15px;
}

#payment-method>h4 {
	color: #565656;
	font-size: 15px;
	font-weight: bold;
}

.payment-method {
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 10px;
}

.payment-method .radio-label {
	color: #565656;
	font-size: 15px;
}

.multiple {
	display: inline-block;
	margin-top: 27px;
}

.secure-money span {
	color: #565656;
}

/*-----------------
	Menu
-----------------------*/
.nav li ul li a:hover,
.nav li ul li a:focus {
	background-color: transparent;
}

.dropdown .dropdown-menu {
	border: 0;
	border-top: 3px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	padding: 0;
}

.menu-6.active .badge {
	background-color: #fff;
	border-color: #fff;
	color: #e76f6f;
	position: absolute;
	right: 5px;
	top: 5px;
}

.menu-6 .badge {
	background-color: #e76f6f;
	border-color: #e76f6f;
	color: #fff;
	position: absolute;
	right: 5px;
	top: 5px;
}

.menu-6.active .badge {
	background-color: #fff;
	border-color: #fff;
	color: #e76f6f;
}

.menu-5 .badge {
	background-color: #6db6f5;
	border-color: #6db6f5;
	color: #fff;
	position: absolute;
	right: 5px;
	top: 5px;
}

.menu-5.active .badge {
	background-color: #fff;
	border-color: #fff;
	color: #6db6f5;
}

/*-----------------
	Payments
-----------------------*/
.withdraw-btn {
	margin: 15px 0;
}

/*-----------------
	Edit Gig
-----------------------*/

.uploaded-img {
	margin: 0 10px 10px 0;
	position: relative;
	display: inline-block;
}

.uploaded-remove {
	color: #f00;
	display: inline-block;
	line-height: 0;
	position: absolute;
	right: -5px;
	top: -7px;
}

.uploaded-img>iframe {
	height: 68px;
	width: 100px;
}

.extra-gig-option {
	margin-top: 10px;
}

.extra-gig-option:nth-child(10) {
	margin-bottom: 15px;
}

/*-----------------
	Files Upload
-----------------------*/

input[type="file"] {
	height: auto;
}

/*-----------------
	Responsive
-----------------------*/

@media (min-width: 1030px) {
	.container {
		width: 1030px;
	}
}

@media (min-width: 992px) and (max-width: 1029px) {
	.navbar {
		height: 117.5px;
	}

	.author-img {
		width: 103px;
	}

	.user-details {
		width: 770px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.author-img {
		width: 58%;
	}

	.navbar {
		height: 90px;
	}

	.menu-1.active {
		background-size: 100% auto !important;
	}

	.menu-2.active {
		background-size: 100% auto !important;
	}

	.menu-3.active {
		background-size: 100% auto !important;
	}

	.buy-section .product {
		min-height: 370px;
	}

	.user-image {
		margin-right: 3%;
		width: 20%;
	}

	.user-details {
		width: 77%;
	}

	.widget-box {
		margin-bottom: 15px;
	}

	.author-name {
		width: 74px;
	}

	.tab-list.payments-tabs ul>li.active {
		width: 200px;
	}

	.tab-list.payments-tabs ul>li>a {
		width: 173px;
	}
}

@media (max-width: 978px) {
	body.menu-open {
		overflow: hidden;
	}

	.header {
		height: auto !important;
		position: relative;
		z-index: 1052;
	}

	.modal-open .header {
		z-index: 1040;
	}

	.mobile_btn {
		display: block;
	}

	.content {
		background-color: #fff;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.home-banner {
		padding-top: 30px;
	}

	.banner-box {
		background-size: 100% auto;
		background-position: center bottom;
		height: 340px;
	}

	.banner-title {
		margin-bottom: 15px;
		margin-top: 10px;
		font-size: 24px;
	}


	.daily-figure {
		padding: 15px 0;
	}

	.clients-area {
		padding: 15px 0;
	}

	.footer-top {
		padding: 15px 0 0;
	}

	.widget-title {
		margin-bottom: 15px;
	}

	.author-img {
		width: 56%;
	}

	.location-gigs,
	.latest-gigs {
		padding: 15px 0;
	}

	.tab-list ul>li.active {
		width: 160px;
	}
}

@media (max-width:767px) {
	.close-chat #close_btn {
		right: 0;
	}

	.message-user {
		bottom: 0;
		max-width: 270px;
		top: 103px;
		border-spacing: 0;
		height: 100%;
		width: 100%;
		background-color: var(--secondary);
		left: 0;
		padding-top: 15px;
		padding-bottom: 15px;
		z-index: 10;
		transition: all 0.4s ease 0s;
	}

	#close_btn {
		background-color: #3c4258;
		color: #fff;
		min-height: 40px;
		padding: 10px;
		position: absolute;
		text-align: center;
		top: 0;
		width: 40px;
		z-index: 100;
		display: inline-block;
	}

	.to-top {
		display: none;
	}

	.sell-banner {
		height: auto;
		padding: 30px 0;
	}

	.image-editor {
		overflow-y: hidden;
	}

	.post-gig-area {
		padding: 20px 0;
	}

	.name-block2 {
		background-color: inherit;
		border-radius: 0;
		box-shadow: inherit;
		display: inline-block;
		width: 100%;
	}

	.superfast-block {
		margin-top: 10px;
	}

	.name-input {
		background-color: #e7e7e7;
		border-radius: 4px;
		display: inline-block;
		width: 100%;
		-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
		-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
		box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	}

	.name-block {
		background-color: inherit;
		border-radius: 0;
		box-shadow: inherit;
		display: inline-block;
		width: 100%;
	}

	.name-input2 {
		background-color: #e7e7e7;
		border-radius: 4px;
		display: inline-block;
		width: 100%;
		-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
		-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
		box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08) inset;
	}

	.name-block .form-control.amount {
		background-color: #e7e7e7;
	}

	.name-block2 .form-control.amount {
		background-color: #e7e7e7;
	}

	.name-block2 .form-control.amount2 {
		background-color: #e7e7e7;
	}

	.header-title {
		font-size: 24px;
	}

	.name-block2.superfast-block {
		width: 100%;
	}

	.product-header h2 {
		font-size: 24px;
	}

	.gig-detail {
		font-size: 14px;
	}

	.page-title {
		font-size: 26px;
	}
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
	.container {
		width: 580px;
	}

	.tab-list ul>li>a {
		width: 125px;
	}

	.user-image {
		width: 100px;
	}

	.user-details {
		width: 380px;
	}

	.author-name {
		width: 92px;
	}
}

@media only screen and (max-width: 599px) {
	.hidden-xxs {
		display: none;
	}

	.logo {
		height: auto;
		width: 80px;
	}

	.feature-box p {
		min-height: unset;
	}
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
	.container {
		width: 460px;
	}

	.banner-box {
		height: auto;
	}

	.tab-list ul>li.active {
		width: 150px;
		font-size: 18px;
		padding: 4px 0;
	}

	.tab-list ul>li.active>a {
		font-size: 18px;
		padding: 4px 0;
	}

	.tab-list ul>li>a {
		font-size: 18px;
		padding: 4px 0;
		width: 140px;
	}

	.tab-list.payments-tabs ul>li.active {
		width: 105px;
	}

	.tab-list.payments-tabs ul>li>a {
		width: 105px;
	}

	.user-image {
		width: 100px;
	}

	.user-details {
		width: 310px;
	}

	.sell-banner-cont h2 {
		font-size: 35px;
	}

	.parallax {
		min-height: auto;
	}

	.home-banner {
		padding: 30px 0;
	}

	.banner-content {
		margin-top: 18px;
		min-height: 240px;
		padding-top: 30px;
	}

	.author-name {
		width: 135px;
	}
}

@media only screen and (max-width: 479px) {
	.footer-line {
		width: 100%;
	}

	.footer-top {
		padding: 15px 0 0;
	}

	.widget-title {
		margin-bottom: 15px;
	}

	.home-banner {
		padding: 15px 0;
	}

	.banner-box {
		background-image: none;
		height: auto;
	}

	.banner-content {
		margin-top: 0;
		height: 100%;
	}

	.banner-title {
		font-size: 20px;
		margin: 15px 0;
	}

	.feature-box p {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.daily-figure {
		padding: 15px 0;
	}

	.location-gigs {
		padding: 15px 0;
	}

	.latest-title {
		font-size: 20px;
	}

	.client-title>span {
		font-size: 20px;
	}

	.page-title {
		font-size: 24px;
	}

	.profile-section {
		padding: 20px 0;
	}

	#select_country span.select {
		margin-top: 10px;
	}

	.location-gigs .price-box {
		right: -12px;
	}

	.latest-gigs {
		padding: 15px 0;
	}

	.change-location {
		display: inline-block;
	}

	.clients-area {
		padding: 15px 0;
	}

	.user-details {
		width: 100%;
	}

	.parallax {
		min-height: auto;
	}

	.custom-popup .modal-footer {
		padding: 15px;
	}

	.custom-popup .modal-header h4 {
		font-size: 24px;
	}

	.daily-figure {
		display: none;
	}

	.sell-banner-cont h2 {
		font-size: 24px;
	}

	.sell-banner-cont {
		padding: 30px 0;
		background-size: 100% auto;
	}

	.post-gig-title {
		font-size: 22px;
	}

	.thanks-cont h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.thanks-cont>* {
		display: block;
	}

	.widget-box h4 {
		font-size: 11px;
	}

	.widget-box h2 {
		font-size: 15px;
		margin-top: 0;
	}

	.widget-box {
		padding: 5px;
	}
}

@media only screen and (min-width: 360px) and (max-width: 479px) {
	.container {
		width: 340px;
	}

	.tab-list ul>li.active {
		min-width: 110px;
		font-size: 18px;
		padding: 4px 10px;
		width: auto;
	}

	.tab-list ul>li.active>a {
		font-size: 18px;
		padding: 4px 10px;
	}

	.tab-list ul>li>a {
		font-size: 18px;
		padding: 4px 10px;
		width: 100%;
		min-width: 100px;
	}

	.tab-list.payments-tabs ul>li.active {
		width: 76px;
	}

	.tab-list.payments-tabs ul>li>a {
		width: 76px;
	}

	.tab-list.favorites-tab ul>li.active {
		width: 155px;
		padding: 0;
	}

	.tab-list.favorites-tab ul>li>a {
		width: 155px;
	}

	.author-name {
		width: 170px;
	}
}

@media only screen and (min-width: 310px) and (max-width: 359px) {
	.container {
		width: 300px;
	}

	.tab-list ul>li.active {
		width: 90px;
		font-size: 18px;
		padding: 4px 0;
	}

	.tab-list ul>li.active>a {
		font-size: 18px;
		padding: 4px 0;
	}

	.tab-list ul>li>a {
		font-size: 18px;
		padding: 4px 0;
		width: 90px;
	}

	.tab-list.payments-tabs ul>li.active {
		width: 66px;
	}

	.tab-list.payments-tabs ul>li>a {
		width: 66px;
	}

	.tab-list.favorites-tab ul>li.active {
		width: 135px;
	}

	.tab-list.favorites-tab ul>li>a {
		width: 135px;
	}

	.author-name {
		width: 133px;
	}
}

/*-----------------
	LINE QR モーダル
-----------------------*/

.line-qr-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.line-qr-modal.show {
	display: block;
}

.line-qr-modal-content {
	max-width: 95%;
	width: 340px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	outline: 0;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.line-qr-modal-close {
	text-align: end;
	font-size: 24px;
	padding: 4px 12px 0;
	cursor: pointer;
}

.line-qr-modal-body {
	text-align: center;
	padding: 8px 24px 24px;
}

.line-qr-modal-body canvas {
	display: block;
	margin: 0 auto;
	width: 250px !important;
	height: 250px !important;
}