body{
    margin: 0px;
    font-family: "Muli" !important;
}

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-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{
    cursor: pointer;
    font-weight: bold;
    outline: none;
    border: 1px solid rgb(0, 174, 239);
    border-radius: 3px;
    box-shadow: none;
    text-align: center;
    color: white;
    font-family: Muli;
    /* min-width: 150px; */
    padding: 0px 8px;
    /* min-height: 42px; */
    box-shadow: -1px 1px 6px -2px #000000;
}

.i-btn[i-size=large]{
    min-height: 42px;
    min-width: 150px;
}

.i-btn[i-size=medium]{
    min-height: 36px;
    min-width: 116px;
}

.i-btn[i-size=small]{
    min-height: 28px;
    min-width: 80px;
    font-size: 12px;
}

.i-btn.default{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

/* .i-btn[i-color=blue]{
    background-color: #11ACCD;
    border: solid 1px #11ACCD;
}

.i-btn[i-color=red]{
    background-color: #E84D39;
    border: solid 1px #E84D39;
}

.i-btn[i-color=green]{
    background-color: #1FAB54;
    border: solid 1px #1FAB54;
    
}

.i-btn[i-color=grey]{
    background-color: #e0e0e0;
    color: #505050;
    border: solid 1px #cccccc;
} */

.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,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(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: muli;
}

.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,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    box-sizing: border-box;
    outline: none;
    font-family: muli;
}

.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: .6s ease-in-out left;
}

.i-carousel .i-carousel-inner > .i-item.active{
    display: block;
}

.i-carousel .i-carousel-controller{
    
}

.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,.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-content{
    /* min-height: 150px; */
}

.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-responsive{

}

.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{
    
}

.i-table.i-table-bordered td{
    border: solid 1px #dfdfdf;
}

.i-table.i-table-bordered th{
    border: solid 1px #dfdfdf;
    border-bottom-width: 2px;
}

.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%; }
}














































