﻿body {
    padding-top: 50px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: auto;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group:first-child .list-group-item:first-child {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .card > .list-group:last-child .list-group-item:last-child {
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 12px 10px;
}

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 12px 10px;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.card-header h4{
  font-size:18px;
}


    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0;
    }

.card-footer {
    padding: 12px 10px;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}
    .card-footer h4 {
        font-size: 18px;
    }
    .card-footer:last-child {
        border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
    }

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .card-deck .card {
        margin-bottom: 15px;
    }

@media (min-width:576px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

        .card-deck .card {
            display: -ms-flexbox;
            display: flex;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px;
        }
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .card-group > .card {
        margin-bottom: 15px;
    }

@media (min-width:576px) {
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .card-group > .card {
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
                    border-bottom-left-radius: 0;
                }
}

.card-columns .card {
    margin-bottom: .75rem;
}

@media (min-width:576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

.accordion > .card {
    overflow: hidden;
}

    .accordion > .card:not(:first-of-type) .card-header:first-child {
        border-radius: 0;
    }

    .accordion > .card:not(:first-of-type):not(:last-of-type) {
        border-bottom: 0;
        border-radius: 0;
    }

    .accordion > .card:first-of-type {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .accordion > .card:last-of-type {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .accordion > .card .card-header {
        margin-bottom: -1px;
    }

.bg-light {
    background-color: #f8f9fa !important;
}
.pb-3, .py-3 {
    padding-bottom: 10px !important;
}

.pt-3, .py-3 {
    padding-top: 10px !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}
@media (min-width: 768px) {
    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important;
    }
}
/*.fa {
    margin-right:.5rem !important;
}*/
.cart_total .fa {
    margin-right: 0 !important;
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}
.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}
.p-3 {
    padding: 1rem !important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}
.pt-5, .py-5 {
    padding-top: 3rem !important;
}
.pl-3, .px-3 {
    padding-left: 1rem !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.d-block {
    display: block !important;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.ml-2, .mx-2 {
    margin-left: .5rem !important;
}
.m-0 {
    margin: 0 !important;
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d !important;
}

.mt-3, .my-3 {
    margin-top: 1rem !important;
}

.ml-auto, .mx-auto {
    margin-left: 10px !important;
}

.pl-5, .px-5 {
    padding-left: 3rem !important;
}

.pr-5, .px-5 {
    padding-right: 3rem !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.border-bottom {
    border-bottom: 1px solid #f07d10 !important;
}

/*submenu*/
.btn-sub-menu {
    padding: 5px;
    background: #323232;
    color: #fff;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

ul.sub-menu {
    text-align: left;
    padding: 0;
    margin: 0 0 5px 0 !important;
    font-size: 18px;
}

    ul.sub-menu > li {
        padding: 0 0 10px 25px;
        margin: 0 0 10px 0;
        list-style: none;
        border-bottom: 1px solid #e7e7e7;
        position: relative;
    }

        ul.sub-menu > li:before {
            content: "\f096";
            font-family: FontAwesome;
            float: left;
            position: absolute;
            left: 4px;
        }

        ul.sub-menu > li.active:before {
            content: "\f046";
        }

    ul.sub-menu a, ul.sub-menu a:hover {
        text-decoration: none !important;
        color: #333;
        padding-left: 5px;
    }

    ul.sub-menu > li.active, ul.sub-menu > li.active a {
        font-weight: 600;
        color: #f27f14;
    }

.bg-primary {
    background-color: #f04664 !important;
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-log {
    color: #fff;
    background-color: #0087c8;
    border-color: #0087c8;
    border-radius: 5px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
}
    .btn-log:hover {
        color: #fff !important;
        background-color: #f07d10;
    }
.float-right {
    float: right !important;
}

 
.fa-home {
    margin-right: 0 !important;
}

@media only screen and (max-width:480px) and (min-width:320px) {
    .pt-5, .py-5 {
        padding-top: 1rem !important;
    }

    .pb-5, .py-5 {
        padding-bottom: 1rem !important;
    }
}
