:root {
    --sbcBlue: #464fa1;
    --sbcYellow: #ffc72a;
    --sbcPink: #f27691;
    --sbcGreen: #5aa26a;
    --sbcBlack: #4c4846;
}
.sbcButton {
	padding: 16px;
}

.buyNow {
	margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
}

#sbcSelectBackTags, #sbcSelectFrontTags {
    width: 300px;
    font-size: 24px;
    border-radius: 8px;
}

/* .sbcTiles {
    width: 60%;
} */

.sbcTileContainerBack, .sbcTileContainerFront {
    width: 90px;
    height: 90px;
    display: inline-block;
    margin: 8px;
    border: 2px solid var(--sbcYellow);
    border-radius: 4px;
    text-align: center;
}

.sbcTileContainerBack img, .sbcTileContainerFront  img {
    /* width: 100%; */
    height: 100%;
    /* object-fit: fill; */
}

.sbcBackTiles, .sbcFrontTiles {
    overflow-y: scroll;
}

#selectedTileBack {
    position: absolute;
    width: 43%;
    top: 42%;
    left: 29%;
}

#selectedTileFront {
    position: absolute;
    width: 18%;
    top: 42%;
    left: 71%;
}

.selectedTile {
    box-shadow: 1px 1px 10px 1px var(--sbcYellow);
}

.tileFrontLeft {
}

.tileFrontRight {
    left: 12% !important;
}

.sbcSizeColorSelection, .sbcFrontPosition {
    font-size: 18px;
}

#orderDetails {
    font-size: 24px;
}

.requiredMsg {
    color: red;
    font-weight: 600;
}

#orderDetails {
    border: 1px var(--sbcYellow) solid;
    border-radius: 8px;
    box-shadow: 1px 10px 38px 5px var(--sbcYellow);
    padding: 16px;
    margin-bottom: 32px;
}

.radioBtnContainer {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radioBtnContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--sbcGreen);
  border-radius: 50%;
  opacity: 50%;
  /* border: 4px solid var(--sbcPink); */
}
  /* background-color: #eee; */

/* On mouse-over, add a grey background color */
.radioBtnContainer:hover input ~ .checkmark {
  background-color: var(--sbcPink);
  opacity: 100%;
  /* background-color: #ccc; */
}

/* When the radio button is checked, add a blue background */
.radioBtnContainer input:checked ~ .checkmark {
  background-color: var(--sbcYellow);
  opacity: 100%;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioBtnContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radioBtnContainer .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}


@media (min-width: 1024px) {
    .sbcTileContainerBack, .sbcTileContainerFront {
        width: 100px;
        height: 100px;
    }

    #selectedTileBack {
        width: 208px;
        top: 45%;
        left: 27%;
    }

    #selectedTileFront {
        width: 78px;
        top: 50%;
        left: 68%;
    }

    .sbcSizeColorSelection, .sbcFrontPosition {
        font-size: 24px;
    }
    
    .tileFrontRight {
        left: 21% !important;
    }

}

