@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,600,600i,700,700i');

body {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.4px;
}

h2,h3,h4 {
	letter-spacing: 0.5px;
}

select {
  padding-right: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../images/select-arrow.jpg');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center right
}

/* CAUTION: IE hackery ahead */
select::-ms-expand { 
    display: none; /* remove default arrow on ie10 and ie11 */
}

.btn {
	padding: 10px 20px;
	font-weight: 700;
	font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	font-family: 'Montserrat', sans-serif;
}

.btn-light {
	border-color: #212529;
	border-radius: 0px;
}

.btn-primary {
	background-color: #00a7e1;
    border-color: #00a7e1;
    color: #fff;
}

.btn-primary:hover{
	background-color: #fff !important;
    color: #00a7e1 !important;
	border-color: #00a7e1 !important;
}

.container {
	max-width: 1370px;
}

#header {
	padding: 30px 0;
}

#header h1 {
	margin: 0;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 4px;
}

.logo {
	display: inline-block;
	margin-bottom: 10px;
}

.head-section {
	margin-bottom: 20px;
	padding: 15px 20px;
	background-color: #eaeaea;
}

.head-section.page-steps {
	background-color: #00a7e1;
	padding: 20px;
}

.head-section:not(.page-steps) h2 {
	color: #00a7e1;
	letter-spacing: 2.5px;
}

@media (max-width: 767px) {
	.head-section div[class^="col"] {
		margin-bottom: 10px;
	}
	.head-section div[class^="col"]:last-child {
		margin-bottom: 0;
	}
}

.head-section.next-prev-step {
	margin-bottom: 25px;
}

.head-section h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	line-height: 43px;
	color: #fff;
}

.head-section .btn-link {
	color: #fff;
}

.page-steps .step {
	text-align: center;
	color: #fff;
}
.page-steps .step h3 {
	display: inline-block;
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.page-steps .step span {
	display: block;
	margin-top: 3px;
}

.page-steps .step.active h3 {
	border-bottom: 3px solid #fff;
}


.product-list .row {
	margin-left: -10px;
	margin-right: -10px;
}

.product-list .row > [class^="col"] {
	padding: 0 10px;
}

.product-box {
	padding: 15px;
	border: 1px solid #979797;
	margin-bottom: 20px;
}

.product-box > * {
	margin-bottom: 15px;
}

.product-box > *:last-child {
	margin-bottom: 0;
}

.product-box h3 {
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
}

.product-box .image {
	text-align: center;
}

.product-box .image img {
	display: inline-block;
}

.product-box .cta .btn {
	width: 100%;
}

.head-row {
	margin-bottom: 20px;
}

.form-check {
	padding: 0;
}

.form-check input,
.form-radio input {
	position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check label,
.form-radio label {
	display: inline-block;
    height: auto;
    padding-left: 30px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
	transition: all 0.5s ease-in-out;
}

.form-check label:before,
.form-radio label:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #212529;
    border-radius: 50%;
	transition: all 0.5s ease-in-out;
}

.form-check input:checked + label,
.form-radio input:checked + label {
	color: #ff4612;
}

.form-check input:checked + label:before,
.form-radio input:checked + label:before {
    background-color: #ff4612;
    border-color: #ff4612;
}

.form-checkbox input {
	position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-checkbox label {
	display: inline-block;
    height: auto;
    padding-left: 30px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
	transition: all 0.5s ease-in-out;
}

.form-checkbox label:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #ff4612;
	transition: all 0.5s ease-in-out;
}
.form-checkbox label:after {
	content: '✔';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    text-align: center;
    border: 1px solid #ff4612;
    line-height: 20px;
	transition: all 0.5s ease-in-out;
	opacity: 0;
	color: #fff;
	background: #ff4612;
}

.form-checkbox input:checked + label:after {
	opacity: 1;
}

.info-row {
	margin-bottom: 30px;
}

.info-row .form-group:last-child,
.info-row:last-child {
	margin-bottom: 0;
}

.info-row h4 {
    text-transform: uppercase;
    font-weight: 500;
	min-width: 70px;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 24px;
}

.info-row textarea {
	width: 100%;
    height: 140px;
    resize: none;
    margin: 0;
    float: left;
	padding: 5px;
}

.quantity-section {
	padding: 15px;
	border: 1px solid #979797;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
}

.quantity-sizes {
	display: inline-block;
}

.quantity-sizes .quantity-item {
	margin-left: 10px;
	float: left;
	width: 50px;
}

.quantity-sizes .quantity-item:first-child {
	margin-left: 0;
}

.quantity-sizes .quantity-item label {
	display: block;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
}

.quantity-sizes .quantity-item input {
	text-align: center;
	width: 100%;
	padding-left: 14px;
	transition: all 0.3s;
	border: 1px solid #979797;
}

.quantity-sizes .quantity-item input:hover,
.quantity-sizes .quantity-item input:focus {
	padding-left: 0;
}

.quantity-section p {
	width: 100%;
	margin: 10px 0 0;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
}

.quantity-sizes .quantity-item:last-child {
	margin-right: 0;
}

.product-details {
	position: relative;
}

.product-details .current-color h4 {
	float: left;
	margin: 0 15px 0 0;
	line-height: 43px;
}

.product-details .close-product {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	background-color: #00a7e1;
	text-align: center;
	display: block;
	transition: all 0.5s ease-in-out;
}
.product-details .close-product:hover {
	opacity: 0.7;
}

.product-details .head-row {
	padding-right: 50px;
}

.product-details .close-product i {
	color: #fff;
	line-height: 32px;
}

.product-details .head-row h3 {
	margin-bottom: 15px;
	font-weight: 700;
	color: #202020;
}
.input-file input {
	opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.input-file label {
	cursor: pointer;
}

.input-file .input-file-container {
	position: relative;
}
.input-file .file-return {
		font-style: italic;
}

.input-file h4,
.input-file .input-file-container,
.input-file .file-return {
	display: inline-block;
	margin-right: 20px;
}

.input-file h4 {
	margin-bottom: 0;
}

.product-details .info-row .add-new-file{
	margin-top: -15px;
}

.add-new-file {
	font-weight: 500;
	color: #212529;
	padding-left: 0;
	padding-right: 0;
	text-transform: capitalize;
	font-size: 16px;
}

.product-info {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 8px solid #eaeaea;
}

.product-info:last-child {
	border-bottom: none;
}

.product-info .image {
	text-align: center;
}

.product-info .image img {
	display: inline-block;
}

.product-info .product-info-sidebar .btn {
	width: 100%;
	text-transform: initial;
	font-weight: 400;
	margin-top: 20px;
	border-radius: 0px;
}

.products-details {
	padding-top: 20px;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 50px 40px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
  width: 32em;
border-radius: .3125em;
}


.popup-content {
	text-align: center;
}

.popup-content h2 {
	margin-bottom: 40px;
	letter-spacing: 1px;
	line-height: 44px;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 700;
    color: #212529;
}

.reference-name label {
	display: none;
}

.reference-name input {
	width: 300px;
    height: 40px;
    margin-top: 15px;
    max-width: 100%;
    padding: 0 10px;
    border: 1px solid #00a7e1;
    text-align: center;
}

.popup-content .btn {
	width: 300px;
	background-color: #00a7e1;
	border-color: #00a7e1;
	color: #fff;
}

.popup-content .btn:hover,
.popup-content .btn:focus {
	background-color: #fff;
	color: #00a7e1;
}
.popup-content .reference-name input {
	width: 100%;
}

.popup-content h3 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.color-list {
	display: inline-block;
	width: 100%;
}

.color-list .color {
	float: left;
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
    text-decoration: none;
    color: #212529;
    border: 3px solid transparent;
    width: 62px;
    background: none;
	overflow: hidden;
}

.color-list .color.selected {
    border: 3px solid #0079e1;
}

.color-list .color.active {
	border: 3px solid #212529;
	font-weight: 700;
}

.color-list .color .image {
	background-color: #d8d8d8;
    width: 56px;
    height: 56px;
    text-align: left;
    background: none;
}

.color-list .color .image img{
	width:56px;
	height:56px;
}


.color-list .color h5 {
	font-size: 10px;
    margin-top: 5px;
    min-height: 30px;
    text-align: center;
	text-overflow: ellipsis;
    overflow: hidden;
}

#footer {
	padding: 40px 0;
	background-color: #252525;
	color: #FFF;
}

#footer p {
	margin-bottom: 20px;
	font-weight: 500;
}

#footer a, 
#footer p a {
	color: #FFF;
}

#footer p:last-child {
	margin-bottom: 0;
}

.footer-logo {
	height: 70px;
	display: inline-block;
}

.footer-logo img {
	max-height: 70px;
}

#page {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00a7e1;
	z-index: 99;
}

#loader .loader-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 150px;
	height: 150px;
}

#loader .loader-container img {
	max-width: 100%;
	max-height: 100%;
	transition: all 2s ease-in-out;
}


.rotate-center { 
	-webkit-animation: rotate-center 1s ease-in-out infinite;
  -moz-animation: rotate-center 1s ease-in-out infinite;
  -ms-animation: rotate-center 1s ease-in-out infinite;
  -o-animation: rotate-center 1s ease-in-out infinite;
  animation: rotate-center 1s ease-in-out infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes rotate-center {
    0%   {transform: rotate(0deg);}
    80% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

/* Standard syntax */
@keyframes rotate-center {
    0%   {transform: rotate(0deg);}
    80% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}


.step2-description {
	margin: 30px 0;
	max-width: 975px;
	
}

.step2-description p {
	margin-bottom: 20px;
}

.step2-product {
    padding: 50px 0;
    border-bottom: 8px solid #eaeaea;
}

.step2-product:last-child {
	border-bottom: none;
}

.step2-product-details h3 {
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 15px;
}

.step2-product-details h4 {
	margin: 0 15px 0 0;
    line-height: 43px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    min-width: 70px;
}


.players-form {
	padding-top: 20px;
}

.players-form .form-group {
	width: 60px;
	text-align: left;
	display: inline-block;
	margin-right: 10px;
}

.players-form .form-group input,
.players-form .form-group select {
	width: 100%;
	padding: 0 10px;
	height: 30px;
	text-align: center;
	border: 1px solid #979797;
}

.players-form .form-group.name {
	width: 180px;
}

.players-form .form-group.select {
	width: 80px;
}

.players-form .form-group label {
	display: block;
	width: 100%;
	margin: 0;
}

.btn.btn-warning.btn-warning-2 {
    text-transform: initial;
    font-weight: 400;
    border-radius: 0px;
}

.step2-product .quantity-sizes .quantity-item input {
	background-color: #d8d8d8;
}

.step2-product .quantity-sizes .quantity-item input:hover,
.step2-product .quantity-sizes .quantity-item input:focus {
	padding-left: 14px;
}

.step2-product .info-row h4 {
	text-align: center;
	margin-bottom: 20px;
}

.step2-product .quantity-section {
	margin: 50px 0 0;
}

.step2-product .form-actions {
	padding-top: 20px;
}

.step2-product .form-actions .image-info {
	font-size: 12px;
	font-weight: 500;
}

.step2-product .form-actions .btn {
	margin-top: 5px;
}

@media (min-width: 992px) {
	.step2-product .quantity-section {
		float: right;
		padding: 20px;
	}
}
.billing-section .billing-step {
	padding: 50px 0;
	border-bottom: 8px solid #eaeaea;
}

.billing-section .billing-step:last-child {
	border-bottom: none;
}

.form-column h4 {
	margin: 0 0 35px 0;
    line-height: 43px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-column .form-group {
	margin-bottom: 15px;
}

.form-column .form-group.same-address {
	margin-top: -48px;
    top: 8px;
	position: relative;
}

.form-column .form-group label {
	width: 100%;
}

.form-column .form-group input,
.form-column .form-group select,
.form-column .form-group textarea {
	width: 100%;
	padding: 0 10px;
	height: 30px;
	border: 1px solid #979797;
}

.form-column .form-group textarea {
	height: 80px;
	padding: 10px;
}

@media (min-width: 1200px) {
	.billing-section .row {
		margin-left: -25px;
		margin-right: -25px;
	}
	.billing-section .row > div {
		padding: 0 25px;
	}
}

.form-divider {
	height: 10px;
	background: #00a7e1;
	margin: 30px 0;
}

.form-group.has-error label, .error {
  color: #dd4b39;
}

input.error,  select.error, textarea.error{
	border: 1px solid #dd4b39 !important;
}

.order-review-details {
	margin-bottom: 50px;
}

.order-review-products .product-review {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 8px solid #eaeaea;
}

.order-review-products .product-review:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.product-review .quantity-section {
	width: 100%;
	border: none;
	padding: 0;
}

.product-review p:not(:last-child) {
	margin-bottom: 0;
}

.product-review h3 {
	margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

.product-review p {
	margin-bottom: 10px;
}

.product-review  .quantity-sizes,
.product-review  .players-info {
	width: 100%;
	border: 1px solid #979797;
	margin-bottom: 15px;
}

.product-review  table,
.product-review table {
	width: 100%;
}

.product-review table td {
	text-align: center;
	padding: 10px;
	line-height: 25px;
}

.product-review table td:last-child {
	border-left: 1px solid #979797;
	text-transform: uppercase;
}

.product-review  .players-info table td:first-child {
	text-align: left;
}

.product-review table thead td {
	font-weight: 600;
	border-bottom: 1px solid #979797;
}

.quantity-row .total-quantity {
	text-align: right;
	font-weight: 600;
}

.wrap.select2-selection--single {
    height: 100%;
}
.select2-container .wrap.select2-selection--single .select2-selection__rendered {
    word-wrap: break-word;
    text-overflow: inherit;
    white-space: normal;
}
.select2-container--default .select2-results>.select2-results__options {
	max-height: 250px;
}

.product-select h1 {
	text-transform: uppercase;
    color: #00a7e1;
    font-size: 28px;
    margin-top: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}


.btn.outline {
	background-color: #fff;
	border-color: #ff4612;
	color: #ff4612;
	border-width: 2px;
}

.btn.outline:hover {
	color: #fff;
	background-color: #ff4612;
}

.product-select .product-select-box {
	width: 350px;
	margin: 0 auto;
}

.product-select .select2-container--default .select2-selection--single {
	border-radius: 0px;
}

.product-select .select2-container--default .select2-selection--single .select2-selection__arrow {
	background-color: #979797;
	color: #fff;
	height: 28px;
	width: 30px;
	background-image: url('../images/select-arrow.jpg');
  	background-repeat: no-repeat;
  	background-size: 30px;
  	background-position: center
}

.product-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent;
    display: none;
}

.product-select input {
	border-radius: 0px;
	border-color: #aaa;
	font-size: 14px;
}

.product-select .select2-container .wrap.select2-selection--single .select2-selection__rendered {
	font-size: 14px;
	padding-right: 30px;
}

.product-select .select2-container .wrap.select2-selection--single .select2-selection__rendered img {
	position: relative;
    top: -2px;
    width: 20px;
}

.product-select .view-tear-gear {
	width: 290px;
}

.product-select .form-group .btn,
.btn-theme,
.head-section .btn-dark {
	background-color: #00a7e1;
	border-color: #00a7e1;
	color: #fff;
}

.product-select .form-group .btn {
	margin: 20px 0 50px;
}

.product-select .form-group .btn:hover,
.product-select .form-group .btn:focus,
.btn-theme:hover,
.btn-theme:focus,
.head-section .btn-dark:hover,
.head-section .btn-dark:focus {
	background-color: #fff;
	color: #00a7e1;
}

.btn-theme-outline,
.head-section .btn-link {
	background-color: #fff;
	color: #00a7e1;
	border-color: #00a7e1;
}

.btn-theme-outline:hover,
.btn-theme-outline:focus,
.head-section .btn-link:hover,
.head-section .btn-link:focus {
	background-color: #00a7e1;
	color: #fff;
	text-decoration: none;
}

.head-section .btn-link u {
	text-decoration: none;
}

.product-select .form-group label {
	font-size: 14px;
	margin-bottom: 2px;
}

.change_color_name,
.change_color_name:hover,
.change_color_name:focus {
	background-color: transparent;
	border-color: transparent;
	color: #ff4612;
	box-shadow: none;
}

.product-info-sidebar .btn,
.input-file-container .btn {
	background-color: transparent;
    border-color: #ff4612;
    box-shadow: none;
    text-transform: initial;
    font-weight: 400;
    border-radius: 0px;
}

.product-info-sidebar .btn:hover,
.product-info-sidebar .btn:focus,
.input-file-container .btn:hover,
.input-file-container .btn:focus {
	background-color:  #ff4612;
    color: #fff;
}

.input-file-container {
	cursor: pointer;
}


.add-new-file {
	color: #ff4612;
}

.product-info .info-row:not(.head-row):not(.quantity-row) {
	max-width: 800px;
}

.extra-name-line,
.customization-type-line,
.extra-name-line {
	margin-bottom: 5px;
}

.swal2-popup {
	padding: 50px 40px!important;
}

.swal2-icon {
	display: none!important;
}

.swal2-title {
	line-height: 44px!important;
    font-size: 34px!important;
    text-transform: uppercase!important;
    font-weight: 700!important;
    color: #212529!important;
}

.swal2-actions button {
	width: 100%;
	margin-bottom: 10px!important;
	padding: 10px 20px!important;
	font-weight: 700!important;
	font-size: 14px!important;
    letter-spacing: 1px;
    text-transform: uppercase;
	transition: all 0.5s ease-in-out;

}

.swal2-actions button:last-child {
	margin-bottom: 0;
}

.input-file-container a {
	color: #ff4612;
	text-decoration: underline;
	font-weight: 500;
}


#quantity-counts-container.sticky .quantity-counts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

#quantity-counts-container .quantity-counts {
	padding: 25px 0 10px;
	margin: 0 auto;
	position: relative;
	background-color: #eaeaea;
	width: 100%;
    float: left;
}

#quantity-counts-container .quantity-counts:before,
#quantity-counts-container .quantity-counts:after {
	content: "";
	position: absolute;
	top: 0;
	left: 990%;
	height: 100%;
	width: 2000px;
	background-color: #eaeaea;
}

#quantity-counts-container .quantity-counts:before {
	left: auto;
	right: 99%;
}

.step2-product {
	overflow: hidden;
	padding-top: 0;
}


.quntity-total-section {
	width: 230px;
	float: left;
	padding-right: 20px;
}

.quntity-total-section h3 {
	margin: 0;
	line-height: 24px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.quntity-total-section h4 {
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	letter-spacing: 2px;
}

.quntity-total-section .image-info {
	margin-top: 10px;
	border: 1px solid #00a7e1;
	background-color: transparent;
	text-align: center;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 12px;
	color: #00a7e1;
	max-width: 190px;
	padding: 10px;
}

.quantity-count-section {
	margin-right: 20px;
	text-align: center;
	float: left;
}

.quantity-count-section:last-child {
	margin-right: 0;
}

.quantity-count-section p {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 5px;
	padding: 0 10px;
}

.quantity-count-section .quantity-sizes {
	border: 1px solid #979797;
	padding: 10px;
	width: 100%;
}

.quantity-count-section .quantity-sizes thead td {
	border-bottom: 1px solid #979797;
	padding-top: 0;
}

.quantity-count-section .quantity-sizes thead td:first-child {
	border-bottom: none;
}
.quantity-count-section .quantity-sizes td {
	padding: 5px 10px;
	font-size: 13px;
}

.quantity-count-section .quantity-sizes td img {
	max-width: 30px;
	max-height: 30px;
}

.quantity-count-section .quantity-sizes td:first-child {
	padding-left: 0;
}

.quantity-count-section .quantity-sizes tbody td {
	padding-bottom: 0;
}

.players-form-top {
	width: 100%;
	float: left;
	padding: 20px 5px 0;
}

.players-form:not(.players-form-top) .players-form-label {
	display: none;
}

.players-form:not(.players-form-top) .form-group {

}

.players-form-top .players-form-label .form-group {
	margin-bottom: 0;
	vertical-align: bottom;
	height: 85px;
	float: left;
}

.players-form-top .players-form-label .form-group.select {
	text-align: center;
}

.players-form-top .players-form-label .form-group:not(.select) {
	padding: 70px 10px 0;
}

.players-form-top .players-form-label .form-group.name {
	padding: 0px 10px 0;
}

.players-form-top .players-form-label .form-group .quntity-total-section {
	margin-bottom: 20px;
	color: #ff4612;
}

.quantity-counts-tables {
	max-width: initial;
    margin: 0 auto;
    text-align: center;
}

.quantity-counts-tables .quantity-count-section {
	float: none;
    display: inline-block;
}

.quantity-counts-tables .quantity-count-section .quantity-sizes td {
	padding: 0px 5px;
}

.players-form-top .players-form-label .form-group label {
	font-weight: 700;
	font-size: large;
}

.players-form-values .players-form-value {
	padding: 5px;
	width: 100%;
	float: left;
}

.players-form-values .players-form-value:nth-of-type(2n-1) {
	background-color: #eaeaea;
}

.players-form-values .players-form-value .form-group {
	margin-bottom: 0;
}

.players-form-label .form-group {
	font-size: 13px;
}

.players-form .form-group input, 
.players-form .form-group select {
	background-color: transparent;
    font-size: 13px;
    text-align: left;
    outline: none;
}

.players-form .form-group select {
	padding: 0 33px 0 5px;
}
.players-form .remove-name-number {
	box-shadow: none;
	text-decoration: underline;
	color: #ff4612;
	font-size: 14px;
	font-weight: 400;
	padding: 0;
	text-transform: initial;
	padding: 0 20px;
}

.players-form .form-group.select {
	width: 130px;
}

.players-form .form-group.select img {
	max-width: 75px;
	display: inline-block;
	max-height: 85px;
}

.orange-link {
	color: #ff4612;
	text-decoration: underline;
	font-weight: 500;
	padding: 0;
	font-size: 14px;
	text-transform: capitalize;
	box-shadow: none;
}

.orange-link:hover,
.orange-link:focus {
	color: #ff4612;
	text-decoration: underline;
	box-shadow: none;
}

.clear-order-row .btn {
	color: #202020;
}

.head-section.next-prev-step + .clear-order-row {
	margin-bottom: 25px;
}

@media (min-width: 768px) {
	.step-description .submit-order {
		margin-right: 20px;
	}
}

.submit-order {
	background-color: #ff4512;
	border-color: #ff4512;
}

.step-description {
	padding: 30px 0 20px;
}

.tooltip-inner {
    background-color: #00a7e1;
}
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #00a7e1;
}
.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
    margin-top: -3px;
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: #00a7e1;
}
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: #00a7e1;
}
.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
    right: 0;
    margin-top: -3px;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: #00a7e1;
}
.new-order-popup h2 {
	margin-bottom: 20px;
}
.new-order-popup h2,
.new-order-popup h3 {
	color: #00a7e1;
}
.new-order-popup p {
	font-weight: 500;
}

.order-review-products .players-info,
.order-review-products .players-info  table {
	border: none;
}	

.order-review-products .players-info  table thead td {
	vertical-align: bottom;
	border: none;
	padding-bottom: 20px;
}

.order-review-products .players-info table td:last-child {
	border: none;
}

.order-review-products .players-info table td {
	height: 40px;
	width: 80px;
	padding: 10px 5px;
	font-size: 14px;
}

.order-review-products .players-info table td span {
	display: block;
	overflow: hidden;
	width: 70px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.order-review-products .players-info table td:first-child {
	width: 150px;
}

.order-review-products .players-info table td:first-child span {
	width: 150px;
}

.order-review-products .players-info  table tbody tr:nth-of-type(2n-1) td {
	background-color: #eaeaea;
}

.order-review-products .players-info {
	display: inline-block;
	width: initial;
}

.order-review-products .product-review:last-child {
	padding-bottom: 50px;
}

#footer {
	margin-top: 25px;
}

@media (max-width: 468px) {
	.quantity-count-section {
		margin-right: 0;
		width: 100%;
	}
	.head-section .btn {
		min-width: 50%;
		margin-right: 0 !important;
		margin: 5px auto;
	}
}
@media (max-width: 767px) {
	#footer .text-center:not(:last-child) {
		padding-bottom: 25px;
	}
	.head-section .btn {
		margin-bottom: 5px;
	}
	.quantity-sizes .quantity-item input {
		padding: 0;
	}
	.quantity-sizes .quantity-item {
		width: 40px;
	}
	.product-info-sidebar {
		margin-bottom: 30px;
	}

	.next-prev-step {
		text-align: center;
	}

	.swal2-title {
	    line-height: 34px!important;
	    font-size: 24px!important;
	}

	.product-info {
	    margin-bottom: 25px;
	    padding-bottom: 25px;
	}  

	.form-column h4 {
		margin-bottom: 15px;
		margin-top: 48px;
	} 

	.form-column .form-group.same-address {
		margin-top: 0;
		top: 0;
	}
	.billing-section .billing-step {
		padding-top: 0;
	}
	.mobile-mb-50 {
		margin-bottom: 40px;
	}
	#quantity-counts-container.sticky .quantity-counts {
		position: static;
	}
	.quntity-total-section {
		margin-bottom: 15px;
	}
	.quantity-count-section p {
		padding-left: 0;
		text-align: left;
	}
	.product-review table td {
		padding: 5px;
	}
	.white-popup {
		max-width: 100%;
	}
	.product-review .players-info {
		max-width: 100%;
		overflow: scroll;
	}
}

.swal2-popup {
	width: 570px;
}

.swal2-popup .swal2-close {
	display: block !important;
	color: #212529!important;
}

.mfp-close-btn-in .mfp-close {
	color: #212529;
	font-size: 2.5em;
    line-height: 1.2;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    font-family: serif;
}

.order-review-products .name-row {
	padding-top: 25px;
}

@-webkit-keyframes swal2-show-custom {
	0%{-webkit-transform:scale(.7);transform:scale(.7)}
	100%{-webkit-transform:scale(1);transform:scale(1)}
}
@keyframes swal2-show-custom {
	0%{-webkit-transform:scale(.7);transform:scale(.7)}
	100%{-webkit-transform:scale(1);transform:scale(1)}
}

.swal2-show {
    -webkit-animation: swal2-show-custom .3s!important;
    animation: swal2-show-custom .3s!important;
}

.tooltip-inner {
	border-radius: 0px!important;
	padding: 20px !important;
}


.quantity-count-section .quantity-sizes table {
	width: 100%;
}

.players-form-values .players-form-valuE {
	position: relative;
	z-index: 0;
}

.players-form-values .players-form-value.active {
	box-shadow: 0 0 0px 2px #ff4612;
    z-index: 1;
}

.jq-toast-single { font-family: inherit; }
.page-steps .step h3 { letter-spacing: 0; }
.jq-toast-single h2 { font-family: inherit; letter-spacing: inherit; }	

@media (max-width: 767px) {
	.product-review table {
		font-size: 12px;
	}
}

@media (min-width: 600px) and (max-width: 1360px) {
	
	.quantity-counts-tables .quantity-count-section {
		margin-right: 0;
	}
	.quantity-counts-tables .quantity-count-section .quantity-sizes td {
		padding: 0;
	}
	.players-form .form-group.select {
		width: 100px;
	}
}

@media (min-width: 600px) and  (max-width: 1199px) {
	.players-form .form-group.select {
		width: 80px;
	}
	.quantity-counts-tables {
		max-height: 35vh;
		overflow-y: scroll;
	}
}
@media (min-height: 500px) and  (max-height: 719px) {
	.quantity-counts-tables {
		max-height: 35vh;
		overflow-y: scroll;
	}
}
	