p {
    margin: 0px;
}

.i-row {
    margin: 0px;
}

.i-y-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.i-x-center {
    display: flex;
    justify-content: center;
}

.i-y-top {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.i-x-left {
    display: flex;
    justify-content: flex-start;
}

.i-y-bottom {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.i-x-right {
    display: flex;
    justify-content: flex-end;
}

.i-x-space-between {
    display: flex;
    justify-content: space-between;
}

.i-x-space-around {
    display: flex;
    justify-content: space-around;
}

.i-x-space-evenly {
    display: flex;
    justify-content: space-evenly;
}

.i-y-100 {
    height: 100%;
}

.i-x-100 {
    width: 100%;
}

.i-x-wrap {
    flex-wrap: wrap;
}

.x-center {
    justify-content: center;
}

.x-left {
    justify-content: flex-start;
}

.x-right {
    justify-content: flex-end;
}

.y-center {
    align-items: center;
}

.y-top {
    align-items: flex-start;
}

.y-bottom {
    align-items: flex-end;
}

.i-btn {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    padding: 5px 15px;
    margin: 0px 5px;
    background-color: #009bf8;
    border-radius: 3px;
    border: solid 1px #009bf8;
    box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    outline: none;
    height: auto;
    text-align: center
}

    .i-btn:hover {
        opacity: 0.9;
    }

    .i-btn.default {
        background-color: #009bf8;
        border: solid 1px #009bf8;
    }

    .i-btn.warning {
        background-color: #ff9800;
        border: solid 1px #ff9800;
    }

    .i-btn.transparent {
        background-color: #ffffff;
        color: #009bf8;
        border: solid 1px #009bf8;
    }

    .i-btn.customer {
        background-color: #d84315;
        color: #ffffff;
        border: solid 1px #d84315;
    }

    .i-btn.delete {
        background-color: #d84315;
        color: #ffffff;
        border: solid 1px #d84315;
    }

    .i-btn.file {
        background-color: #ef6c00;
        color: #ffffff;
        border: solid 1px #ef6c00;
    }

    .i-btn.large {
        padding: 7px 20px;
    }

    .i-btn.medium {
        padding: 5px 15px;
    }

    .i-btn.small {
        font-size: 12px;
        padding: 3px 12px;
        margin: 0px 3px;
    }

    .i-btn.extra-small {
        padding: 0px 8px;
        font-size: 11px;
        margin: 0px 3px;
        outline: none;
    }

    .i-btn[disabled] {
        background-color: #e0e0e0;
        border-color: #bdbdbd;
        cursor: no-drop;
    }

        .i-btn[disabled]:hover {
            background-color: #eeeeee;
            border-color: #e0e0e0;
        }

.i-input-group {
    position: relative;
    margin-left: 8px;
}

    .i-input-group .i-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 100%;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        padding: 0px;
    }

        .i-input-group .i-dropdown .i-dropdown-item {
            font-size: 13px;
            min-height: 24px;
            display: flex;
            align-items: center;
            padding: 0px 9px;
            cursor: pointer;
        }

            .i-input-group .i-dropdown .i-dropdown-item:hover {
                background-color: #f8f8f8;
            }

.i-btn-dropdown {
    min-width: 120px;
    background-color: #ffffff;
    border: solid 1px #cccccc;
    padding: 6px 10px;
    border-radius: 3px;
    text-align: left;
    outline: none;
    cursor: pointer;
    font-family: sans-serif;
}

    .i-btn-dropdown i {
        float: right;
        margin-left: 8px;
    }

    .i-btn-dropdown:hover {
        background-color: #f8f8f8;
    }

.i-input {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    box-sizing: border-box;
    outline: none;
    font-family: sans-serif;
}

.i-carousel {
    position: relative;
    margin: 15px 0px;
}

    .i-carousel .i-carousel-indicator {
        position: absolute;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 0px;
        height: 40px;
        z-index: 50;
    }

        .i-carousel .i-carousel-indicator li {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 1px;
            text-indent: -999px;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0);
            border: 1px solid #ffffff;
            border-radius: 10px;
            margin-right: 6px;
        }

            .i-carousel .i-carousel-indicator li.active {
                background-color: #ffffff;
            }

    .i-carousel .i-carousel-inner {
        min-height: 300px;
        background: #b67676;
        position: relative;
    }

        .i-carousel .i-carousel-inner > .i-item {
            position: absolute;
            height: 100%;
            width: 100%;
            background-repeat: no-repeat;
            background-size: cover;
            display: none;
            transition: 0.6s ease-in-out left;
        }

            .i-carousel .i-carousel-inner > .i-item.active {
                display: block;
            }

.i-modal {
    position: fixed;
    background: rgba(0, 0, 0, 0.33);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10000;
    /* display: flex; */
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    display: none;
}

    .i-modal.i-open {
        display: flex;
    }

    .i-modal .i-modal-box {
        min-width: 15%;
        min-height: 100px;
        box-shadow: 0 2px 11px rgba(0, 0, 0, 0.5);
        background: #ffffff;
        border-radius: 5px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        overflow: hidden;
    }

        .i-modal .i-modal-box .i-modal-header {
            height: 35px;
            border-bottom: solid 1px #dfdfdf;
            padding: 8px 15px;
            font-size: 14px;
            background-color: #f8f8f8;
        }

        .i-modal .i-modal-box .i-modal-footer {
            /* min-height: 40px; */
            border-top: solid 1px #dfdfdf;
            padding: 10px;
            background-color: #f8f8f8;
        }

    .i-modal .i-modal-title {
        font-weight: bold;
    }

.i-table {
    font-size: 13px;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

    .i-table td {
        padding: 5px 8px;
    }

    .i-table th {
        padding: 5px 8px;
        background: #fbfbfb;
        text-align: left;
    }

    .i-table.i-table-bordered td {
        border: solid 1px #dfdfdf;
    }

    .i-table.i-table-bordered th {
        border: solid 1px #dfdfdf;
        border-bottom-width: 2px;
        font-weight: bold;
    }

.m-10 {
    width: 10%;
}

.m-20 {
    width: 20%;
}

.m-30 {
    width: 30%;
}

.m-40 {
    width: 40%;
}

.m-50 {
    width: 50%;
}

.m-60 {
    width: 60%;
}

.m-70 {
    width: 70%;
}

.m-80 {
    width: 80%;
}

.m-90 {
    width: 90%;
}

.m-100 {
    width: 100%;
}

.m-5 {
    width: 5%;
}

.m-15 {
    width: 15%;
}

.m-25 {
    width: 25%;
}

.m-35 {
    width: 35%;
}

.m-45 {
    width: 45%;
}

.m-55 {
    width: 55%;
}

.m-65 {
    width: 65%;
}

.m-75 {
    width: 75%;
}

.m-85 {
    width: 85%;
}

.m-95 {
    width: 95%;
}

/* tablet size */
@media (min-width: 768px) {
    .t-10 {
        width: 10%;
    }

    .t-20 {
        width: 20%;
    }

    .t-30 {
        width: 30%;
    }

    .t-40 {
        width: 40%;
    }

    .t-50 {
        width: 50%;
    }

    .t-60 {
        width: 60%;
    }

    .t-70 {
        width: 70%;
    }

    .t-80 {
        width: 80%;
    }

    .t-90 {
        width: 90%;
    }

    .t-100 {
        width: 100%;
    }

    .t-5 {
        width: 5%;
    }

    .t-15 {
        width: 15%;
    }

    .t-25 {
        width: 25%;
    }

    .t-35 {
        width: 35%;
    }

    .t-45 {
        width: 45%;
    }

    .t-55 {
        width: 55%;
    }

    .t-65 {
        width: 65%;
    }

    .t-75 {
        width: 75%;
    }

    .t-85 {
        width: 85%;
    }

    .t-95 {
        width: 95%;
    }
}

/* desktop size */
@media (min-width: 992px) {
    .d-10 {
        width: 10%;
    }

    .d-20 {
        width: 20%;
    }

    .d-30 {
        width: 30%;
    }

    .d-40 {
        width: 40%;
    }

    .d-50 {
        width: 50%;
    }

    .d-60 {
        width: 60%;
    }

    .d-70 {
        width: 70%;
    }

    .d-80 {
        width: 80%;
    }

    .d-90 {
        width: 90%;
    }

    .d-100 {
        width: 100%;
    }

    .d-5 {
        width: 5%;
    }

    .d-15 {
        width: 15%;
    }

    .d-25 {
        width: 25%;
    }

    .d-35 {
        width: 35%;
    }

    .d-45 {
        width: 45%;
    }

    .d-55 {
        width: 55%;
    }

    .d-65 {
        width: 65%;
    }

    .d-75 {
        width: 75%;
    }

    .d-85 {
        width: 85%;
    }

    .d-95 {
        width: 95%;
    }
}

/* desktop large size */
@media (min-width: 1200px) {
    .d-lg-10 {
        width: 10%;
    }

    .d-lg-20 {
        width: 20%;
    }

    .d-lg-30 {
        width: 30%;
    }

    .d-lg-40 {
        width: 40%;
    }

    .d-lg-50 {
        width: 50%;
    }

    .d-lg-60 {
        width: 60%;
    }

    .d-lg-70 {
        width: 70%;
    }

    .d-lg-80 {
        width: 80%;
    }

    .d-lg-90 {
        width: 90%;
    }

    .d-lg-100 {
        width: 100%;
    }

    .d-lg-5 {
        width: 5%;
    }

    .d-lg-15 {
        width: 15%;
    }

    .d-lg-25 {
        width: 25%;
    }

    .d-lg-35 {
        width: 35%;
    }

    .d-lg-45 {
        width: 45%;
    }

    .d-lg-55 {
        width: 55%;
    }

    .d-lg-65 {
        width: 65%;
    }

    .d-lg-75 {
        width: 75%;
    }

    .d-lg-85 {
        width: 85%;
    }

    .d-lg-95 {
        width: 95%;
    }
}
