@font-face {
    font-family: Montserrat;
    src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),  url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf')  format('truetype'), url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: Poppins;
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),  url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf')  format('truetype'), url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}




/* -----------------------
common
--------------------------- */
.main-bg {
    background-color: #febd21;
}

.main-color {
    color: #febd21;
}

.al-center {
    text-align: center;
}

label {
    font-family: Poppins;
    font-weight: normal;
}

.cp-shadow {
    box-shadow: 0 10px 10px 3px rgba(99, 114, 130, 0.15);
    border: 1px solid #eee;
}

.custom-max-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-btn-style {
    border: 0 none;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    margin-left: 17px;
    min-width: 100px;
    max-width: 100px;
}

.no-left-margin {
    margin-left: 0;
}

/* -----------------------
overwriter
--------------------------- */
/*** selectbox ***/
.std-form-field .SumoSelect, .form-horizontal .SumoSelect {
    width: 100%;
}

/*** datepicker ***/
.datepicker {
    opacity: 1;
    display: block;
    visibility: visible;
    z-index: 1;
}
/* .date */
.date input.form-control {
}
.date .input-group-addon {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    padding: 2px 7px;
}
.date {
    /*background: transparent url("../img/calendar.png") no-repeat 99% center;*/
    cursor: pointer;
}
.date.timepicker {
    /*background-image: url("../img/time.png");*/
}


.datepicker .btn {
    font-size: 14px;
    font-weight: bold;
    color: black;
    border-radius: 0px;
    background-color: white;
}
.datepicker .btn-today {
    font-size: 14px;
    font-weight: bold;
    color: red;
    border-radius: 0px;
    background-color: white;
}
.datepicker .btn-primary {
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 4px;
    background-color: #f5ad01;
}
.timepicker .btn {
    font-size: 14px;
    font-weight: bold;
    color: black;
    border-radius: 0px;
    background-color: white;
}
.timepicker .btn-primary {
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 4px;
    background-color: #f5ad01;
}

.form-group .datetimepicker input,
.form-group .date input {
    margin-bottom: 0;
}
.form-group .datetimepicker,
.form-group .date {
    margin-bottom: 10px;
}
.datepicker.dropdown-menu {
    z-index: 9;
}
/*** overwrite datepicker when in error ***/
.std-form-field .date input {
    display: block;
    float: none;
    width: 100%;
}

.std-form-field .date .input-group-addon {
    display: inline-block;
    padding: 3px 10px;
    width: auto;
    position: absolute;
    top: 1px;
    right: 0;
    background: none;
    box-shadow: none;
    border-width: 0;
    border-left: 1px solid #cccccc;
}

.std-form-field .input-group {
    width: 100%;
    position: relative;
}

.std-form-field.error .date .input-group-addon {
    border-color: #b10000;
}

/*** bootstrap overwrite ***/
.btn.btn-black {
    color: #ffffff;
    background-color: #000000;
    border-color: #3e3d3c;
}

.btn.btn-black:hover, .btn.btn-black:focus {
    color: #ffffff;
    background-color: #353535;
    border-color: #525251;
}

.btn.btn-white {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn.btn-white:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn.btn-white:active:hover,
.btn.btn-white:active:focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}
.std-btn {
    min-width: 100px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    margin: 5px;
}
.input-group-addon {
    background: none;
}
.input-group-addon .glyphicon {
    color: #ffc000;
}
.input-group-addon .glyphicon-calendar:before {
    content: '';
    background: transparent url(../img/calendar.png) no-repeat center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: 19px;
}

.input-group-addon .glyphicon-time:before {
    content: '';
    background: transparent url(../img/time.png) no-repeat center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: 19px;
}

/*** checkbox ***/
.icheckbox_minimal {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(72, 71, 71, 0.41);
}

/* -----------------------
.banner-section
--------------------------- */
.banner-section {
    padding: 30px;
}
.login_page .banner-section {
    padding: 0 30px 30px;
    margin-top: 10%;
}

.banner-section .site-logo-wrapper {
    margin: 0;
    text-align: center;
}

.banner-section .site-logo-wrapper > a {
    display: inline-block;
}

.banner-section .site-logo-wrapper > a > img {
    max-width: 100%;
}

/* -----------------------
.nav-section
--------------------------- */
.nav-section {
    background: #f6f6f6;
    margin-bottom: 40px;
}

.menu-wrapper {
    text-align: center;
    display: none;
}

.menu-wrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu-wrapper ul li {
    display: block;
    position: relative;
}

.menu-wrapper > ul > li > span,
.menu-wrapper ul li a {
    color: #c4c4c4;
    font-size: 14px;
    display: inline-block;
    padding: 20px 15px;
    text-decoration: none;
    width: 100%;
    border: 1px solid transparent;
}

.menu-wrapper > ul > li:hover > span,
.menu-wrapper > ul > li > span:hover,
.menu-wrapper > ul > li > span.current {
    background: #fff;
    border: 1px solid #f9f9f9;
    border-bottom: 0 none;
    color: #febd21;
}

.menu-wrapper ul li a:hover {
    color: #febd21
}

.menu-wrapper .sub-menu li {
    position: relative;
    text-align: center;
}

.menu-wrapper .sub-menu li a {
    display: block;
    padding: 15px 20px;
}

/*** .tg-menu-btn ***/
.tg-menu-btn-wrapper {
    text-align: center;
}

.tg-menu-btn {
    width: 34px;
    height: 30px;
    margin: 20px auto;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.tg-menu-btn div,
.tg-menu-btn div:after,
.tg-menu-btn div:before {
    width: 100%;
    height: 5px;
    background: #5a1515;
    transition: all 0.3s;
    border-radius: 3px;
}

.tg-menu-btn div:after,
.tg-menu-btn div:before {
    content: "";
    position: absolute;
    left: 0;
}

.tg-menu-btn div:after {
    top: 20px;
}

.tg-menu-btn div:before {
    top: 10px;
}

.tg-menu-btn.on div {
    background-color: transparent;
}

.tg-menu-btn.on div:before {
    transform: rotate(45deg) translate(-1.5px, -1px);
}

.tg-menu-btn.on div:after {
    transform: rotate(-45deg) translate(8px, -9.5px);
}

.tg-menu-btn.on + #menu {
    display: block;
}

/* -----------------------
.center-box
--------------------------- */
.center-box {
    padding: 30px 20px;
    background: #fff;
    min-height: 300px;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.center-box.stretch-box {
    padding: 50px 0;
}

.std-title {
    font-size: 30px;
    text-align: center;
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 80px;
}

.std-title:before {
    content: '';
    background: #febd21;
    width: 50px;
    height: 5px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -25px
}

/* -----------------------
.std-form-field
--------------------------- */
.std-form-field {
    margin-bottom: 24px;
}

.std-form-field label {
    font-size: 20px;
    font-family: Poppins;
    font-weight: normal;
    color: #b6b6b6;
    display: block;
}

.std-form-field label .dot-separator {
    float: right;
}

.std-form-field input, .std-form-field textarea {
    border: 1px solid #c4c4c4;
    display: block;
    padding: 5px 10px;
    color: #454545;
    width: 100%;
}

.std-form-field textarea {
    max-height: 160px;
}

.std-form-field input:focus, .std-form-field textarea:focus {
    border-color: #febd21;
    outline: none;
}

.std-form-field.error .btn-select,
.std-form-field textarea.error,
.std-form-field.error textarea,
.std-form-field input.error,
.std-form-field.error input {
    border-color: #b10000;
}

.std-form-field.error label {
    color: #b10000;
}

/*** .fixed-label.form-inline ***/
.fixed-label {
    padding: 0 30px 30px;
    overflow: hidden;
}

.fixed-label input {
    width: 70%;
    float: left;
    margin-left: 30%;
}

.fixed-label label {
    width: 100px;
    position: absolute;
}

.fixed-label .form-group {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fixed-label .btn {
    width: 70%;
    margin-left: 30%;
}

/*** file ***/
/*.file-input-wrapper input {
    opacity: 0;
    max-width: 100px;
    cursor: pointer;
}

.file-input-wrapper {
    display: inline-block;
    cursor: pointer;
    position: relative;
    min-width: 100px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}

.file-input-wrapper:before {
    content: 'Choose';
    position: absolute;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    left: 0px;
    top: 7px;
    cursor: pointer;
}

.file-input-wrapper:hover {
    cursor: pointer;
}
.file-input-wrapper .thumbnail {
    padding: 16px 10px;
    background: transparent;
    margin: 0;
    border: 0;
}*/
.fileinput-new {
    background: #f5ad01;
    border: 1px solid #e19f01;
    display: inline-block;
    color: #fff;
    padding: 5px 15px;
    cursor: pointer;
}
.action-btn-wrapper {
    text-align: center;
    margin: 30px 0;
}

.action-btn-wrapper .btn {
    margin: 5px;
}

/*** .head-action-bar ***/
.head-action-bar {
    text-align: center;
    margin-bottom: 30px;
}

.std-table-wrapper {
    margin-bottom: 30px;
    width: 100%;
    overflow-y: scroll;
}

.std-table-wrapper .hero-table thead{
    background: #f5ad01;
    color: #fff;
}
.std-table-wrapper .hero-table thead th a {
    color: #fff;
    text-decoration: none;
}
.table .action-icon-wrapper {
    min-width: 70px;
}

/*** .gray-input-bg ***/
.gray-input-bg input, .gray-input-bg .SumoSelect > .CaptionCont {
    /*background: #efefef;*/
    /*border: 1px solid #d8d6d6;*/
}

.gray-input-bg .form-group {
    display: inline-block;
    width: 100%;
}
.gray-input-bg label {
    margin-top: 7px;
}

/*.form-control:focus {*/
    /*border-color: #febd21;*/
    /*outline: 0;*/
    /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(231, 233, 102, 0.6);*/
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(231, 233, 102, 0.6);*/
/*}*/

/*** .repeater-box ***/
.repeater-box {
    background: #f3f3f3;
    padding: 40px 15px;
    margin-bottom: 30px;
    clear: both;
}

.rm-btn-wrapper {
    clear: both;
    position: absolute;
    top: -3px;
    right: 0;
}

.rm-btn-wrapper button {
    font-size: 7px;
    padding: 5px 8px;
    border: 0 none;
}

.repeater-box .repeat-item {
    position: relative;
    background: #fdfcfc;
    margin: 0 auto 30px;
    padding: 32px 0;
}
.repeat-item .std-form-field {
    margin: 0;
}
.repeat-item .std-form-field label {
    position: relative;
}

.repeat-item .std-form-field label .dot-separator {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
}

.add-btn-wrapper {
    text-align: right;
}

.add-btn-wrapper .add-btn {
    padding: 8px 15px;
    min-width: 100px;
}

/*** .three-input-field ***/
.three-input-field {
    padding: 0 30px 30px;
}

.three-input-field .form-group {
    margin-bottom: 15px;
}

.three-input-field .search-btn-style {
    margin-left: 0;
    width: auto;
    min-width: 80px;
}

.three-input-field [class*=col-] {
    padding: 0 7px;
}

/*** .two-input-field ***/
.two-input-field {
    padding: 0 30px 30px;
    margin: 0 auto;
    max-width: 900px;
}

.two-input-field [class*="col-"] {
    padding: 0 10px;
}

.two-input-field .form-group {
    margin-bottom: 15px;
    overflow: hidden;
}

.two-input-field .SumoSelect {
    width: 100%;
    margin-left: 0;
    float: none;
}

/* -----------------------
.std-table-wrapper
--------------------------- */
.std-table-wrapper .hero-table tr, .std-table-wrapper .hero-table td, .std-table-wrapper .hero-table th {
    border: 0 none;
}

.std-table-wrapper .hero-table th,
.std-table-wrapper .hero-table td {
    padding: 14px 10px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: normal;
}

.std-table-wrapper .table-striped > tbody > tr:nth-child(odd) > td,
.std-table-wrapper .table-striped > tbody > tr:nth-child(odd) > th {
    background: #f1f1f1;
}

.std-table-wrapper td .action-icon-wrapper a {
    display: inline-block;
    margin: 5px;
}

.std-table-wrapper td .action-icon-wrapper a i.fa-trash {
    color: #fb8181;
}

.std-table-wrapper .table thead tr th:first-child, .std-table-wrapper .table tbody tr td:first-child {
    padding-left: 35px;
}

/*** login ***/
.sign-in {
    margin: 0 auto 30px;
    width: 350px;
}

.signin-head {
    text-align: center;
}

.signin-head h3 {
    padding: 20px;
    margin: 0;
    color: #fff;
    font-weight: bold;
}

.signin-body {
    padding: 30px;
}

/* -----------------------
.going-bar
--------------------------- */
.going-bar {
    padding: 0 20px;
    text-align: center;
}

.going-bar nav {
    text-align: center;
}

.going-bar nav .pagination {
    display: inline-block;
    margin: 10px 0;
}
/* -----------------------
.pagination
--------------------------- */
.pagination li .active {
    background: #febd21;
    color: #fff;
}
/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {

    /* -----------------------
    form
    --------------------------- */
    .fixed-label {
        padding: 0 20px 30px;
    }

    /* -----------------------
    .going-bar
    --------------------------- */
    .going-bar {
        text-align: left;
        padding: 0 50px;
    }

    .going-bar .text {
        display: inline-block;
    }

    .going-bar nav {
        text-align: center;
    }

    .going-bar nav .pagination {
        display: inline-block;
        margin-top: 0;
    }

    /* -----------------------
    .center-box
    --------------------------- */
    .center-box {
        padding: 50px;
    }

    /* -----------------------
    .nav-section
    --------------------------- */
    .menu-wrapper {
        display: block;
    }

    .tg-menu-btn {
        display: none;
    }

    .menu-wrapper ul li {
        display: inline-block;
        position: relative;
    }

    .menu-wrapper ul li a {
        border: 0 none;
        width: auto;
    }

    .menu-wrapper .sub-menu {
        position: absolute;
        background: #fff;
        width: 200px;
        visibility: hidden;
        opacity: 0;
        z-index: -99999;
        transition: all 0.4s ease;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        -o-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        padding: 0 20px;
    }

    .menu-wrapper .sub-menu li {
        display: block;
        position: relative;
        text-align: left;
    }

    .menu-wrapper .sub-menu li a {
        padding: 15px 20px 15px 0;
        border-bottom: 1px solid #656565;
        color: #494949;
    }
    .menu-wrapper .sub-menu li:last-child > a {
        border: 0 none;
    }

    .menu-wrapper ul li:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        z-index: 99999;
    }
    .menu-wrapper ul .sub-menu li:hover > a {
        border-color: #febd21;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
    /* -----------------------
    form
    --------------------------- */
    .fixed-label {
        padding: 0 80px 30px;
    }

    .fixed-label .no-left-margin {
        margin-left: 0;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {

}

/* Home */
.lg-bar {
    background: #ffffff;
    text-align: center;
    padding: 30px 10px;
}

.lg-bar a {
    display: inline-block;
}

#sq-box-section {
    background: #f6f6f6;
    overflow: hidden;
    padding: 60px 0;
    border-radius: 4px;
}

#sq-box-section .sq-box {
    background: #fff;
    min-height: 180px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 3px #bbbbbb;
    position: relative;
}

#sq-box-section .sq-box img {
    display: inline-block;
    margin-top: 45px;
    transition: all 0.4s ease;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
}
#sq-box-section .sq-box:hover > img {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
}

#sq-box-section .sq-box .title {
    font-family: Montserrat;
    color: #5c5c5c;
    font-weight: normal;
    margin: 20px auto;
}

#sq-box-section .sq-box .hover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #febd21;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: left;
    padding: 60px 43px;
    transition: all 0.4s ease;
    opacity: 0;
    list-style-type: none;
}

#sq-box-section .sq-box .hover-box li a {
    display: block;
    padding-left: 24px;
    margin: 0 0 15px;
}

#sq-box-section .sq-box .hover-box .add-icon a {
    background: transparent url("../img/add.png") no-repeat left top;
    font-size: 14px;
}

#sq-box-section .sq-box .hover-box .add-listing {
    background: transparent url("../img/list.png") no-repeat left top;
}

#sq-box-section .sq-box:hover > .hover-box {
    opacity: 1;
    cursor: pointer;
}
#sq-box-section .sq-box:hover > .hover-box a {
    color: #fff;
    text-decoration: none;
}

.check-box-group {
    background: #f3f3f3;
    padding: 40px 15px 60px 15px;
    margin-bottom: 30px;
    clear: both;
}

.sub-menu-title{
    font-size: 25px;
    font-family: Poppins;
    font-weight: normal;
    color: #000000;
    display: block;
    margin-bottom: 25px;
    margin-top: -10px;
}

.search-btn {
    min-width: 100px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    margin: -2px;
}

.archive-form-field{
    margin-bottom: 24px !important;
}

.pointer {
    cursor: pointer;
}

/* ---------------------------------------------------
Common CSS
-----------------------------------------------------*/
.main-bg {
    background-color: #febd21;
}
.al-center {
    text-align: center;
}
.al-right {
    text-align: right;
}
.al-left {
    text-align: left;
}
.text-white {
    color: #ffffff !important;
}
.btn-white {
    background: #fff;
    border-radius: 0;
    min-width: 122px;
}
.btn-white:hover, .btn-white:focus {
    color: #222222;
}
.gray-title, .gray-label {
    color: #c3c3c3;
    font-size: 18px;
}

.desc{
    margin: 0 0 10px 75px;
}

/* ---------------------------------------------------
Listing Forum
-----------------------------------------------------*/
.forum-section {
    max-width: 1170px;
    /*margin: 100px auto;*/
    font-size: 16px;
    line-height: 28px;
    color: #494949;
}

.forum-section h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
    font-family: Montserrat;
    color: #494949
}

.forum-section a {
    color: #febd21;
}

/* ---------------------------------------------------
Reply Listing
-----------------------------------------------------*/
/* ---------------------------------------------------
Reply Listing
-----------------------------------------------------*/
.reply-box {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.reply-box .avatar-box {
    position: relative;
    text-align: center;
}

.reply-box .avatar-box .img-wrapper {
    display: inline-block;
}

.reply-box .avatar-box .img-wrapper img {
    max-width: 80px;
}

.reply-box .avatar-box .author-title {
    color: #febd21;
}

.reply-msg-box {
    position: relative;
}

.reply-msg-box:after {
    position: absolute;
    width: 1px;
    height: 90%;
    background: #ddd;
    display: block;
    left: -20px;
    top: 0;
    content: '';
}

.reply-msg-box .reply-title {
    font-size: 20px;
}

.reply-msg-box .reply-date {
    color: #ddd;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.pagination-btn-bar {
    padding: 30px 0 0;
}

.pagination-box .pagination {
    margin: 10px;
    padding: 0;
}

.pagination-btn-bar .btn {
    margin: 10px 0;
}
.has-one-btn .btn {
    margin-top: 11px;
}

.reply-btn {
    min-width: 120px;
    margin: 20px auto;
    border-radius: 0;
}

.project-check-box-group {
    background: #f3f3f3;
    padding: 40px 15px 105px 15px;
    margin-bottom: 30px;
    clear: both;
}