// Custom.scss
// Option A: Include all of Bootstrap
// Include any default variable overrides here (though functions won't be available)
$font-family-sans-serif:( 'Raleway', sans-serif);
$font-size-base:( 0.8rem); // Assumes the browser default, typically `16px`
$h1-font-size : ($font-size-base * 2);
$h2-font-size : ($font-size-base * 1.75);
$h3-font-size : ($font-size-base * 1.5);
$h4-font-size : ($font-size-base * 1.3);
$h5-font-size : ($font-size-base * 1.25);
$h6-font-size : ($font-size-base);
@import "node_modules/bootstrap/scss/bootstrap.scss";
// Then add additional custom code here
.bg-green {
    background-color: #0C3F49;
}

.btn-mall {
    color: #fff;
    background-color: #0C3F49;
    border-color: #0C3F49;
}

.btn-mall:hover {
    color: #fff;
    background-color: #0C3F49;
    border-color: #0C3F49;
}

.btn-mall-s {
    color: #fff;
    background-color: #B58952;
    border-color: #B58952;
}

.btn-mall-s:hover {
    color: #fff;
    background-color: #B58952;
    border-color: #B58952;
}

.bg-base {
    background-color: #171717;
}

.bg-mrmall {
    background-color: #B58952;
}

@media (min-width: 576px) {
    body {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    body {
        font-size: 1.2rem;
        $font-size-base: ( 1.2rem);
    }
}

.pin-control-false {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e64848;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0.375rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  }

  .pin-control-true {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #48ff34;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0.375rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  }