@charset "UTF-8";
/* YOUR CUSTOM CSS */

body {
    /* Disables pull-to-refresh and overscroll glow effect.
       Still keeps swipe navigations. */
    overscroll-behavior-y: none;
}
/*Back to the top page*/
.back-to-top {
    position: fixed;
    bottom: 4em !important;
    right: 0px;
    text-decoration: none;
    color: white;
    background-color: rgba(35, 190, 179, 0.8);
    /*https://www.hexcolortool.com/#fa4cd5*/
    /*rgba(235, 235, 235, 0.80)*/
    font-size: 12px;
    padding: 1em;
    display: none;
}

.back-to-top:hover,.float_basket:hover {
    color: white;
    background-color: rgba(250, 76, 213, 0.5);
    /*rgba(135, 135, 135, 0.50)*/
}
/*End */
.align-middle {
    vertical-align: middle !important;
}
.float_basket{
    position: fixed;
    bottom: 2em;
    left: 0px;
    text-decoration: none;
    color: white;
    background-color: rgba(35, 190, 179, 0.8);
    font-size: 12px;
    padding: 1em;
}

.table td.fit {
    white-space: nowrap;
    width: 1%;
    /*Make a class that will fit table cell width to content*/
}
.thumb_menu_list{
    float: left;
    margin-right: 10px;
}



.btn-pink {
    color: #fff;
    background-color: deeppink !important
}

.btn-pink:hover {
    color: #fff;
    background-color: #FF2DB5 !important
}
.counter {
    position: relative;
    top: -15px;
    left: auto;
    z-index: 2;
    padding: 1px 7px;
    margin-left: -23px;
    font-size: 11px;
    color: #fff;
    background-color: #fe1212;
    border-radius: 10em;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
}

.text-pink{
    color: #FF2DB5 !important;
}
.text-darkgray{
    color: darkgray !important;
}

.plus_icon{
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.blink_fix_bar{
    background-color:rgba(100, 100, 100, 0.80) !important;
}

/* Turn off number input Spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.form-check-input {
    clear: left;
}

.form-switch.form-switch-sm {
    margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}

.form-switch.form-switch-md {
    margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}

.form-switch.form-switch-lg {
    margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
}

.form-switch.form-switch-xl {
    margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
}


/*Quantity input change*/
.input-number{
    width: 35px;
    height: 39px;
    padding: 0 5px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
}
.btn-minus{
    width: 30px;
    height: 39px;
    padding: 0px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
    cursor:pointer;
}
.btn-plus{
    width: 30px;
    height: 39px;
    padding: 0px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
    cursor:pointer;
}

.btn-minus:hover,
.btn-plus:hover {
    background: #eeeeee; }

/*------------------------End-----------------*/
