html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

.shoe-configurator {
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Pontano-Sans',sans-serif;
    box-sizing: border-box;
}

.shoe-configurator input {
    font-size: 15px;
    text-align: center;
    padding: 6px;
    width: 100%;
    border: 1px solid #aaaaaa;

}

.shoe-configurator input::-webkit-outer-spin-button,
.shoe-configurator input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.shoe-configurator input[type="number"] {
    -moz-appearance: textfield;
}

.shoe-configurator label {
    display: block;
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
}

.configurator {
    margin-bottom: 25px !important;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (max-width: 992px) {
    .col-md-5ths {
       margin-bottom:15px;
    }

    .col-md-5ths:last-child {
       margin-bottom:0;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.calc-bt {
    background-color: #388E3C;
    color: white;
    border: 1px solid #aaaaaa;
    width: 150px;
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    cursor: pointer;
    font-size:12px;
    text-transform: uppercase;
     margin-right: 15px;
    -webkit-transition:opacity 300ms ease-out;
    -moz-transition:opacity 300ms ease-out;
    -o-transition:opacity 300ms ease-out;
    transition:opacity 300ms ease-out;
}

.calc-bt:hover {
    opacity: 0.75;
    -webkit-transition:opacity 300ms ease-out;
    -moz-transition:opacity 300ms ease-out;
    -o-transition:opacity 300ms ease-out;
    transition:opacity 300ms ease-out;
}

.reset_btn {
    color: black;
    width: 150px;
    text-align: center;
    background-color: #e9e8e6;
}

.bt-section {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.responser p {
    color: #fff;
    padding: 7px 10px;
    margin-bottom: 25px;
    background: #dd083b;
    text-align: center;
}
.validation-errror {
    font-size: 15px;
    color: #dd083b;
}

