@font-face {
    font-family: 'Franklin Gothic Demi Cond';
    src: url('./themes/projectic/assets/fonts/Franklin_Gothic_Demi_Regular.ttf');
}

html {
    font-size: 16px;
    font-family: 'Franklin Gothic Demi Cond';
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    /* background: url('./themes/projectic/assets/img/landing-bg.jpg'); */
		background: url('./themes/projectic/assets/img/body-bg-repeat.jpg');
		background-position: center center;
		background-repeat: repeat;
}

body {
    line-height: 1.5;
    color: #000;
}

.landing {
    width: 100%;
    max-width: 650px;
    margin: 5rem auto 0;
    text-align: center;
    color: #000;
}

.logo-link {
    display: inline-block;
}

.btn {
    font-family: 'Franklin Gothic Demi Cond';
    border-color: transparent;
    width: 100%;
    max-width: 255px;
    border-radius: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn--landing {
    padding-top: 21px;
    padding-bottom: 21px;
    text-transform: uppercase;
}

.btn--yes {
    background: #8dc63f;
    margin-right: 10px;
    margin-left: 5px;
}

.btn--no {
    background: #e50303;
		margin-left: 10px;
		margin-right: 5px;
}

.btn-wrap {
    display: flex;
    justify-content: space-between;
}

.btn--submit {
    background: #f37421;
    max-width: 210px;
    pointer-events: all;
}
.btn--submit-wide{
  display: none;
  max-width: 260px;
  /* margin-top: 20px; */
  margin-left: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.map-buttons {
    position: absolute;
    bottom: 35px;
    width: 100%;
    max-width: 470px;
    text-align: right;
    right: 65px;
    pointer-events: none;
    display: flex;
    align-items: center;
}

#enable_location {
    background: #18767e;
    font-size: 20px;
    position: relative;
    padding-left: 30px;
    max-width: 260px;
    flex: 0 1 260px;
    margin-right: 15px;
    pointer-events: all;
}

#enable_location img {
    position: absolute;
    left: 20px;
    top: 5px;
}

.heading {
    font-size: 26px;
    margin: 75px auto 45px;
}

.txt {
		padding: 15px;    
    /* border-bottom: 1px solid #fff; */
}

#shops-list {
    opacity: 0;
    transition: 2.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1370px;
    width: 100%;
    margin: 0 auto;
    display: none;
}

#shopDisabled {
    transition: 2.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9;
}

.shops-list--wrapper {
    border: 1px solid #f37421;
    border-radius: 10px;
    padding: 40px 0 25px 25px;
    background: #000;
    margin: 0 35px 0 0;
    width: 100%;
    
    max-height: 583px;
    color: #fff;
}

.stores-heading {
    font-size: 28px;
    margin: 0;
}

#stores {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    max-height: 430px;
    overflow-y: scroll;
}

#stores li {
    margin-bottom: 15px;
}

#map {
    width: 100%;
    height: 650px;
}

.wrapper {
    width: calc(100% - 365px);
    position: relative;
}

/* footer {
    margin-top: 100px;
} */

/* Create a custom checkbox */

.label-address {
    padding-left: 30px;
}

.label-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #fff;
}

label {
    position: relative;
}

label:hover {
    color: #c1c1c1;
}

label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* When the checkbox is checked, add a blue background */

label input:checked~.label-checkmark {
    background-color: transparent;
}

/* Create the label-checkmark/indicator (hidden when not checked) */

.label-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the label-checkmark when checked */

label input:checked~.label-checkmark:after {
    display: block;
}

/* Style the label-checkmark/indicator */

label .label-checkmark:after {
    left: 0px;
    top: 0px;
    width: 25px;
    height: 18px;
    background: url('./themes/projectic/assets/img/checked.png');
}

/*  checkbox end */

/* scrollbar */

/* width */

#stores::-webkit-scrollbar-button {
    display: none;
}

#stores::-webkit-scrollbar {
    width: 5px;
}

/* Track */

#stores::-webkit-scrollbar-track {
    background: transparent;
    ;
}

/* Handle */

#stores::-webkit-scrollbar-thumb {
    background: #f37421;
    border-radius: 10px;
}

/* Handle on hover */

#stores::-webkit-scrollbar-thumb:hover {
    background: #d15400;
    cursor: pointer;
}

/* scrollbar end */
@media(min-width:320px){
    #shops-list{
        flex-wrap: wrap;
    }
    .wrapper,
    .shops-list--wrapper{
        width:100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .shops-list--wrapper{
        order:2;
        margin-top: 25px;
    }
    .map-buttons{
        right: 0;
        bottom:0;
        max-width: 100%;
    }
    
    .map-buttons #enable_location{
        font-size: 16px;
        padding-left:20px;
        padding-right:10px;
        max-width:260px;
        flex: 0 1 260px;
        margin:0;
        display: inline-block;
    }
    .map-buttons #enable_location img{
        left: 10px;
    }
    .map-buttons .btn.btn--submit{
        font-size: 16px;
        max-width: 210px;
        flex: 0 1 210px;
        display: inline-block;
        margin: auto;
    }
    .map-buttons{
      flex-wrap: wrap;
    }
    .map-buttons .btn--map{
      flex: 0 1 100%;
      display: inline-block;
      margin: 5px !important;
    }
}
@media(min-width:480px){
    .map-buttons #enable_location{
        max-width: 100%;
        margin-right: auto;
    }
    .map-buttons .btn.btn--submit{
        font-size: 16px;
        max-width: 210px;
        display: inline-block;
    }
}
@media(min-width:768px){
	.txt{
		padding: 70px;
		
	}
}
@media(min-width:991px){
    #shops-list{
        flex-wrap: nowrap;
    }
    .shops-list--wrapper{
        order:1;
        margin-top: 0;
    }
    .map-buttons #enable_location{
        font-size: 20px;
        padding-left: 30px;
        margin-right: 15px;
        }
    .map-buttons .btn.btn--submit{
        font-size: 20px;
        max-width: 210px;
        display: inline-block;
    }
    #shops-list .wrapper{
        order:2;
    }
    #shops-list .shops-list--wrapper{
        max-width: 335px;
        margin: 0 35px 0 0;

    }
    .map-buttons{
      bottom:35px;
      max-width: calc(100% - 65px);
      right: 0;
      flex-wrap: wrap;
    }
}
