/****** Start Main Style ******/

@font-face {
    src: url(../fonts/Poppins-Bold.ttf);
    font-family: Poppins-Bold;
}

@font-face {
    src: url(../fonts/Poppins-SemiBold.ttf);
    font-family: Poppins-SemiBold;
}

@font-face {
    src: url(../fonts/Poppins-Medium.ttf);
    font-family: Poppins-Medium;
}

@font-face {
    src: url(../fonts/Poppins-Regular.ttf);
    font-family: Poppins-Regular;
}

@font-face {
    src: url(../fonts/Poppins-Light.ttf);
    font-family: Poppins-Light;
}

* {
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

html {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none !important;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #555;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #555;
}

a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body {
    background-image: url("../img/bg.png");
    color: #5A5A5A;
    padding: 0px !important;
    margin: 0px !important;
    font-family: Poppins-Medium;
    -webkit-font-smoothing: antialiased !important;
    font-size: 16px;
    line-height: 1.42857143;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative

}

.login-body {
    overflow: hidden
}

input.form-control {
    height: 48px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder,
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #C5C5C5 !important;
    font-family: Poppins-Medium;
    font-size: 14px
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder,
::-moz-placeholder {
    /* Firefox 19+ */
    color: #C5C5C5 !important;
    font-family: Poppins-Medium;
    font-size: 14px
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder,
:-ms-input-placeholder {
    /* IE 10+ */
    color: #C5C5C5 !important;
    font-family: Poppins-Medium;
    font-size: 14px
}

textarea:-moz-placeholder,
input:-moz-placeholder,
:-moz-placeholder {
    /* Firefox 18- */
    color: #C5C5C5 !important;
    font-family: Poppins-Medium;
    font-size: 14px
}

.row.items.all_files {
    justify-content: center;
    margin: 0 -24px;
}

/******************* Start Login Page Style *******************/
.login {
    background-image: url(../img/login-bg.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh !important;
    padding-right: 5%!important;
}
 .row.top-login-header {
    padding-top: 20px;
}

.right-login {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row;
    flex-flow: row;
    position: relative;
}

.logo.text-center {
    margin-top: 0
}

.logo.text-center img {
    width: 60%;
    display: block;
    margin: 0 auto 35px;
}

.left-login h2 {
    margin: 0;
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #FFFFFF;
    font-family: Poppins-Light;
    font-size: 80px;
    line-height: 70px;
}

.left-login h2 span {
    color: #d9a046;
    font-family: Poppins-Regular;
}

#login_form input.form-control {
    margin-bottom: 5px;
}

/*
#login_form button {
    background-image: linear-gradient(to right, #B5A223,#D6C23D, #B5A223);
}
*/

.login .crossing {
    position: absolute;
    bottom: 70px;
    left: 30px;
}

.login-arrow {
    position: absolute;
    width: 40px;
    top: 0;
}

img.login-arrow.left-arrow {
    left: -15%;
}

img.login-arrow.right-arrow {
    right: -15%;
}

#login_form .form-group {
    margin-bottom: 30px;
}


.login .crossing h1 {
    color: #fff;
    margin: 0;
    font-weight: bold;
    font-size: 62px;
    border-left: 5px solid #fff;
    padding-left: 10px;
}

.login .crossing h1 span {
    display: block;
    color: #d9a046;
    font-family: Poppins-SemiBold;
    font-size: 32px;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #5A5A5A;
    font-family: Poppins-SemiBold;
}
/*.login .btn.btn-primary:hover,*/
/*.login .btn.btn-primary:focus,*/
.login .btn.btn-primary {
    width: 180px;
    height: 45px;
    border-color: transparent;
    background-image: url(../img/login-btn.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    float: right;
}

.btn-primary.focus,
.btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(2, 45, 72, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(2, 45, 72, 0.25);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    border-color: transparent;
    background-color:transparent;
    -webkit-box-shadow:none;
    box-shadow:none;
    outline:none;
    text-decoration:none
}

.form-text.text-alert {
    color: #f00;
    font-size: 14px;
    display: none
}

.error-validate , .invalid-feedback{
    color: #f00;
    font-size: 14px;
}


input:-webkit-autofill ,
.login input:-internal-autofill-selected {
    -webkit-appearance: menulist-button;
    background-color: transparent !important;
    background-image: none !important;
    color: #fff !important;
}

.login input:-webkit-autofill,
.login input:-webkit-autofill:hover,
.login input:-webkit-autofill:focus,
.login input:-webkit-autofill:active {
    /*
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    */
    background-color: transparent !important;
}

.login input:-webkit-autofill {
   /* -webkit-box-shadow: 0 0 0 50px transparent inset; */
    -webkit-text-fill-color: transparent;
    background-color: transparent !important;
}

/*
.login input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px transparent inset;
    -webkit-text-fill-color: #fff;
}
*/
 .login-content {
    height: calc(100% - 100px);
}
.footer-login {
    position: absolute;
    right: 0;
    bottom: 35px;
}
.logo-center {
    background-image: url(../img/logo-center.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 348px;
    width: 40%;
    display: inline-block;
}

.login-content form .form-group {
    position: relative
}
.login-content form img {
    position: absolute;
    top: 8px;
    left: 18px;
    width: 25px;
}
.footer-login hr {
    margin: 0 0 10px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ab711c), color-stop(#935b1b), color-stop(#d9a046), to(#a56d27));
    background-image: linear-gradient(#ab711c, #935b1b, #d9a046, #a56d27);
    height: 1px;
}
.footer-login p {
    color: #b3b3b3;
    margin: 0;
    font-family: Poppins-Light;
    font-size: 14px;
}
/******************* End Login Page Style *******************/

/********** Start Navabr Style ***********/
.navbar-Section {
    /* background-image: none; */
    /* height: 80px; */
    /* background-color: #1d1d1d; */
    padding: 5px 0 0;
}

.navbar-Section nav.navbar {
    background-color: transparent !important;
}

.navbar-Section .navbar-brand {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 0;
    width: auto;
}

.navbar-Section .navbar-brand img {
    width: 215px;
    margin-left: 35px;
}

.navbar-Section .user-link .user-img {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}


.navbar-Section .user-link .user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #d9a046;
}

.navbar-Section .user-link .user-info {
    display: inline-block;
    font-size: 15px;
    font-family: Poppins-Bold;
    color: #6B6B6B;
    vertical-align: middle;
    line-height: 14px;
    width: auto;
    padding-left: 5px;
}

.navbar-Section .user-link .user-info span {
    display: block;
    font-size: 11px;
    color: #cccccc;
}

.navbar-Section .navbar-nav .nav-item {
    padding-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-Section .navbar-nav .nav-item:last-child {
    padding-right: 0
}

.navbar-Section a.nav-link {
    font-size: 15px;
    font-family: Poppins-Bold;
    color: #6B6B6B !important;
    vertical-align: middle;
    padding-left: 8px;
    line-height: 14px;
    position: relative;
    top: 3px;
}

.navbar-Section a.nav-link:hover,
.navbar-Section .active a.nav-link {
    color: #2D2D2D !important;
    border-bottom: 3px solid #d9a046;
}
.navbar-Section .user-link a.nav-link:hover {
    border-bottom: 0
}

/*
.navbar-Section .navbar-Section a.nav-link:hover
.navbar-Section .user-link a.nav-link{
    border-bottom: 0;
}
*/

/************************* Start Datepicker Style  *************************/

/*********** Datepicker **********/
.bootstrap-datetimepicker-widget.dropdown-menu {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 10px 0 0 0;
    padding: 0;
    min-width: 300px;
    max-width: 100%;
    width: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3;
    box-shadow: 0 1px 3
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after,
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
    display: none
}

.bootstrap-datetimepicker-widget.dropdown-menu table td,
.bootstrap-datetimepicker-widget.dropdown-menu table th {
    border-radius: 0
}

.bootstrap-datetimepicker-widget.dropdown-menu table td.new,
.bootstrap-datetimepicker-widget.dropdown-menu table td.old {
    color: #bbb
}

.bootstrap-datetimepicker-widget.dropdown-menu table td.today:before {
    border-bottom-color: #d9a046;
}

.bootstrap-datetimepicker-widget.dropdown-menu table td span.active,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active:hover {
    background-color: #d9a046;
    text-shadow: none;
    color: #fff;
}

.bootstrap-datetimepicker-widget.dropdown-menu table td span.active.today:before,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active.today:before,
.bootstrap-datetimepicker-widget.dropdown-menu table td.active:hover.today:before {
    border-bottom-color: #fff
}

.bootstrap-datetimepicker-widget.dropdown-menu table th {
    height: 40px;
    padding: 0;
    width: 40px
}
.single_file, .singleCategory{
    margin-bottom: 15px;
}
.bootstrap-datetimepicker-widget.dropdown-menu table th.picker-switch {
    width: auto
}

.bootstrap-datetimepicker-widget.dropdown-menu table tr:first-of-type th {
    padding-top: 20px;
    padding-bottom: 15px
}

.bootstrap-datetimepicker-widget.dropdown-menu table td.day {
    height: 28px;
    line-height: 34px;
    padding: 0;
    width: auto;
    border-radius: 3px;
    font-size: 13px;
}

.bootstrap-datetimepicker-widget.dropdown-menu table td span {
    border-radius: 0;
    height: 77px;
    line-height: 77px;
    margin: 0;
    width: 25%
}

.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td,
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-months tbody tr td,
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-years tbody tr td {
    padding: 0
}

.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td {
    height: 27px;
    line-height: 27px
}

.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td span {
    display: block;
    float: left;
    width: 50%;
    height: 46px;
    line-height: 46px !important;
    padding: 0
}

.bootstrap-datetimepicker-widget.dropdown-menu .datepicker-decades tbody tr td span:not(.decade) {
    display: block
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td {
    padding: 0;
    width: 30%;
    height: 20px;
    line-height: 20px
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td:nth-child(2) {
    width: 10%
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td a,
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button,
.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td span {
    border: none;
    border-radius: 0;
    height: 56px;
    line-height: 56px;
    padding: 0;
    width: 100%
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td span {
    color: #333;
    margin-top: -1px
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button {
    background-color: #fff;
    color: #333;
    font-weight: 700;
    font-size: 1.2em
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker table td button:hover {
    background-color: #eee
}

.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td {
    border-top: 1px solid #34495e;
    display: none
}

.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td a,
.bootstrap-datetimepicker-widget.dropdown-menu .picker-switch table td span {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0;
    width: 100%
}

/************ End Datepicker *************/
/******* Start Content Style ********/
.contnet {
    min-height: 100%;
    /* native */
    padding: 0 100px;
}

.page-title {
    margin: 20px 10px 0;
    color: #2D2D2D;
    font-size: 22px;
    font-family: Poppins-SemiBold;
}
.page-title a{
    display: inline-block;
    width: 23px;
    height: 23px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #d9a046;
    color: #d9a046;
    line-height: 21px;
    margin-bottom: 5px;
}
.page-title a i {
    position:relative;
    right: 1px;
    top: 0px;
}
.page-title a:focus,
.page-title a:hover{
    background-color:#d9a046;
    color:#fff;
    -webkit-box-shadow:none;
    box-shadow:none;
    outline:nonr
}

.row.search-bar {
    padding: 0 15px;
}

.search-bar ul.list-unstyled {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.search-bar .form-li {
    display: inline-block;
    padding-right: 30px;
    /* border-right: 1px solid #a1a1a1; */
    vertical-align: middle;
    margin-top: 15px;
}

.search-bar .form-li .form-group {
    margin-bottom: 0;
    display: inline-block;
    width: 20%;
}

.search-bar .form-li .form-control {
    background: #ffffff;
    font-size: 14px;
    color: #2E2E2E;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #E8E8E8;
    border-radius: 5px;
    height: 38px;
}


.search-bar .form-li {
    width: calc(100% - 200px);
    padding: 0;
}

.search-bar .btn-li {
    width: 200px;
    padding: 0;
    border-right: 0;
}

.bar-actions {
    padding-top: 10px;
    padding-left: 0;
    margin: 0 auto;
}

.search-bar .btn-li a {
    color: #CCCCCC;
    font-size: 22px;
    padding-right: 15px;
    display: inline-block;
}

.bar-actions .active {
    color: #d9a046;
}

.search-bar .btn {
    width: 100%;
    height: 40px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(72, 72, 72, 0.52);
    box-shadow: 0px 1px 5px 0px rgba(72, 72, 72, 0.52);
    border-radius: 5px;
    color: #fff !important;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 !important;
    line-height: 40px;
    font-size: 14px !important;
    background-image: -webkit-gradient(linear-gradient(to right, #935b1b, #d9a046));
    background-image: linear-gradient(to right, #935b1b, #d9a046);
    font-family: Poppins-Medium;
    border: 0
}
.search-bar .btn:hover{
    text-decoration: none
}
.search-bar form .btn {
    width: auto;
    padding: 0 25px !important;
}

span.filter {
    color: #2D2D2D;
    font-size: 22px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
}

.card-col {
    height: 240px;
    -webkit-box-shadow: 0px 3px 7px -3px rgba(0, 0, 0, 0.38);
    box-shadow: 0px 3px 7px -3px rgba(0, 0, 0, 0.38);
    background: #F8F8F8;
    padding: 15px;
}

.items .card-col {
    height: 230px;
    background-color: #fff;
    background-image: url("../img/card-bg.png");
    background-repeat: no-repeat;
    background-position: 86% 17%;
}

.card-col img {
    width: 90px;
}

.items .card-col img {
    width: 60px;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-col h2 {
    color: #2D2D2D;
    font-size: 20px;
    font-family: Poppins-Medium;
    margin: 15px 0 10px;
}

.card-col .link-content {
    height: 100%;
    width: 100%;
    display: block
}

.card-col .link-content:hover {
    text-decoration: none
}

.items .card-col h2 {
    font-size: 14px;
    line-height: 18px;
    font-family: Poppins-SemiBold;
    margin: 10px 0 0;
}

.items .card-col h3 {
    min-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    font-size: 13px;
    line-height: 15px;
    margin: 3px 0 5px;
    font-family: Poppins-Regular;
    color: #8E8E8E;
}

.card-col p {
    color: #A4A4A4;
    font-family: Poppins-Light;
    font-size: 12px;
    margin: 0;
}

.category-box {
    padding: 5px 15px;
    font-size: 11px;
    font-family: Poppins-Medium;
    background-color: #ECECEC;
    color: #6B6B6B;
    border-radius: 20px;
}

.category-num {
    color: #BEBEBE;
    font-size: 13px;
    font-family: Poppins-Bold;
}

.category-num small {
    font-size: 12px;
    color: #2D2D2D;
}

.card-img {
/*    margin-bottom: 10px;*/
    min-height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-actions {
    position: absolute;
    top: 10px;
    right: 25px;
    z-index: 55
}

.card-actions ul {
    margin: 0;
    padding: 0
}

.card-actions li {
    display: inline-block;
    width: auto
}

.card-actions li button,.card-actions li a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #EFEFEF;
    color: #6B6B6B;
    text-align: center;
    line-height: 25px;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.list-row .col-xl-2 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.list-row .card-img {
    display: inline-block;
    width: auto;
}

.custom-modal .modal-header {
    border: 0;
    padding: 30px 25px 0;
}
.custom-modal .modal-body {
    padding-top: 15px;
}
.custom-modal .modal-title {
    color: #2D2D2D;
    font-size: 22px;
    font-family: Poppins-Medium;
}
.custom-modal label {
    color: #2D2D2D;
    font-size: 14px;
    font-family: Poppins-Regular;
}
.custom-modal .form-control {
    height: 44px;
    font-size: 14px
}
.custom-modal textarea.form-control {
    height: 120px;
    resize: none;
}
.custom-modal .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ced4da
}
.custom-modal .modal-footer .btn{
    border: 0;
    width: 150px
}
.custom-modal .modal-footer .btn-primary{
        font-size: 14px !important;
    background-image: -webkit-gradient(linear-gradient(to right, #935b1b, #d9a046));
    background-image: linear-gradient(to right, #935b1b, #d9a046);
    font-family: Poppins-Medium;
    color: #fff;
    width: 135px!important;
    height: 40px!important;
}
.custom-modal .modal-footer .btn-secondary{
    font-size: 14px !important;
    background-color: #00000042;
    color: #2D2D2D;
    font-family: Poppins-Medium;
    height: 42px;
    width: 140px;
}
.custom-modal .modal-footer {
    border: 0
}
.dropify-wrapper {
    border: 2px dashed #935b1b;
}

.category-card .card-col {
    height: 180px;
    background: #fff;
    border: 1px solid #d9a046;
    background-image: url(../img/card-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    box-shadow: 0px 0px 5px 0px grey;
    border-radius: 6px;
    min-width: 185px;
}

.category-card .card-col h2 {
    font-size: 21px;
    line-height: 23px;
    font-family: Poppins-SemiBold;
    margin: 40px 0 0;
}
.table .dropdown button:focus,
.table .dropdown button:hover,
.table .dropdown button {
    background-color: transparent!important;
    padding: 0;
    margin: 0;
    border: 0!important;
    font-size: 16px;
    font-family: Poppins-Medium;
    color: #2D2D2D!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important
}
.table th {
    color: #BEBEBE;
    font-size: 14px;
    font-family: Poppins-Medium;
}
.table td  {
    color: #2D2D2D;
    font-size: 16px;
    font-family: Poppins-Medium;
}
.table td a i {
    color: #d9a046;
    font-size: 14px;
    padding-right: 5px
}
.table td a {
    color: #2D2D2D;
    font-size: 12px;
    font-family: Poppins-Medium;
}
.table td .dropdown-menu {
    padding: 0;
}
.table td .dropdown-menu a {
    padding: 10px 10px;
    border-bottom: 1px solid #eee;
}
.table td:last-child .dropdown-toggle::after {
    display: none
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #d9a046;
    background-color: #d9a046;
}
.custom-control-input:focus~.custom-control-label::before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #d9a046;
}
.custom-modal .modal-body{
    min-height: auto;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto
}
.alertModal .modal-body {
    padding: 0;
}
.alertModal button.close {
    font-size: 30px;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 15px;
    top: 5px;
    color: #d9a046;
    opacity: 1;
    text-shadow: none;
}
.alertModal .alert_img {
    text-align: center;
    padding-top: 35px;
}
.alertModal p {
    color: #808080;
    text-align: center;
    margin: 10px 0 30px;
    font-size: 20px;
    font-family: Poppins-Medium;
}
.alertModal h2 {
    text-align: center;
    color: #2D2D2D;
    font-size: 16px;
    width: 85%;
    margin: 40px auto 0;
    font-family: Poppins-Medium;
}
#error-modal .alert_img {
    padding-top: 10px
}

#pdfModal .modal-xl {
    max-width: 40%;
}
#pdfModal .modal-xl iframe,#pdfModal .modal-xl embed {
    height: 100vh
}
#pdfModal {
    padding-left: 0
}
/************ Loading **************/
.loading-overlay {
    background: rgba(175, 175, 175, .6);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reverse-spinner {
    position: relative;
    height: 150px;
    width: 150px;
    border: 6px solid transparent;
    border-top-color: #d9a046;
    border-left-color: #d9a046;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.overlay-hidden {
     display: none !important;
}



.reverse-spinner::before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: 6px solid transparent;
    border-top-color: #2D2D2D;
    border-left-color: #2D2D2D;
    border-radius: 50%;
    -webkit-animation: spinBack 1s linear infinite;
    animation: spinBack 1s linear infinite;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spinBack {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg)
    }
}

@keyframes spinBack {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg)
    }
}
canvas.pdf-page-canvas {
    width: 100%!important;
    height: auto!important;
    display: block;
    margin: 0 auto;
}

.img-content {
        width: 100%;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #000;
    text-align: center;
    height: auto;
    min-height: auto;
}
.img-content img {
    width: 100%;
    height: auto;
}

.img-content iframe {
    width: 100%;
    height: 325px;
}
#img-video-file .modal-body {
    min-height: auto;
    overflow: hidden;
    overflow-y: auto;
    padding-top: 15px;
    max-height: 500px;
}

.important-f {
    font-size: 16px;
    color: #ce0000;
}

.hide-large {
    display: none
}
/******** Select All ********/

#addUserModal .custom-control.overflow-checkbox .overflow-control-input {
    display: none;
}

#addUserModal .custom-control.overflow-checkbox .overflow-control-indicator {
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #C4C1C1;
}
#addUserModal .custom-control.overflow-checkbox .overflow-control-input:checked ~ .overflow-control-indicator{
    background-color:#d9a046;
    border:0
}



#addUserModal .custom-control.overflow-checkbox .overflow-control-input:checked ~ .overflow-control-indicator::before {
    content: '';
    display: block;
    position: absolute;
    content: "\f00c";
    font-family:"FontAwesome";
    color: #fff;
    font-size: 12px;
    left: 2px;
}
#addUserModal .custom-control.overflow-checkbox .overflow-control-input:checked ~ .overflow-control-description {
    color:#d9a046
}

#addUserModal .row-header .custom-control,
#addUserModal .row-header .text-header {
    display: inline-block
}

#addUserModal .row-header .custom-control {margin: 0;width: calc(100% - 20px);}

#addUserModal span.overflow-control-description {
    color: #6B6B6B;
    font-size: 14px;
    position: relative;
    top: 1px;
}


#addUserModal .checkBox-group .custom-control {
    float: left;
    display: block;
    margin-bottom: 0;
}

#addUserModal .checkBox-row {
    width: 100%;
    margin: 0 0 5px;
    padding-left: 15px;
}

#addUserModal .checkBox-group .custom-control.overflow-checkbox .overflow-control-indicator {
    border: 2px solid #C4C1C1;
}

#addUserModal .checkBox-group .custom-control.overflow-checkbox .overflow-control-indicator::after {
    border-bottom: 3px solid #969696;
    border-right: 3px solid #969696;
}

#addUserModal .checkBox-group {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    min-height: auto;
    max-height: 300px;
}
.row-header {background: rgb(240 240 240 / 49%);padding: 5px 10px;border: 1px solid rgba(0,0,0,.125);border-radius: 5px;border-bottom-left-radius: 0;border-bottom-right-radius: 0;}

.card.card-body {
    padding: 5px 10px;
    background-color: rgb(240 240 240 / 49%);
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#addUserModal .row-header a.btn.btn-primary {
    border: 0;
    padding: 0;
    color: #6B6B6B;
    font-size: 16px;
    position:relative;
    top: 3px;
}
#addUserModal .row-header a.btn.btn-primary:focus,
#addUserModal .row-header a.btn.btn-primary:hover{
    -webkit-box-shadow:none;
    box-shadow:none;
    border:0;
    outline:none;
    text-decoration:none;

}
#addUserModal .row-header a.btn.btn-primary:hover{
     color:#d9a046
}


/*************** Media Query **************/
@media (min-width:1367px) and (max-width:1440px) {
    .items .col-xl-2 {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
        margin-bottom: 15px
    }
}
@media (min-width:1281px) and (max-width:1366px) {
    .items .col-xl-2 {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
        margin-bottom: 15px
    }
    .contnet {
        padding: 0 50px;
    }
}
@media (min-width:1200px) and (max-width:1280px) {
    .items .col-xl-2 {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
        margin-bottom: 15px
    }
    .contnet {
        padding: 0 35px;
    }
    .login .btn.btn-primary {
        width: 160px;
        height: 44px;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .contnet {
        padding: 0 25px;
    }
    .items .col-xl-2 {
        margin-bottom: 15px
    }
    .login {
        background-size: cover;
    }
    .left-login {
        -ms-flex: 0 0 30%;
        -webkit-box-flex: 0;
        flex: 0 0 30%;
        max-width: 30%;
    }
    .right-login {
        -ms-flex: 0 0 70%;
        -webkit-box-flex: 0;
        flex: 0 0 70%;
        max-width: 70%;
    }
    #pdfModal .modal-xl {
        max-width: 50%;
    }
}

@media (min-width:768px) and (max-width:991px) {

    .contnet {
        padding: 0 15px;
    }
    .items .col-xl-2 {
        margin-bottom: 15px
    }
    .search-bar .btn-li:nth-child(2) {
        width: 125px;
    }
    .search-bar .form-li:nth-child(1) {
        width: calc(100% - 125px);
    }
    .search-bar .form-li .form-group {
        width: 25%;
    }
    .search-bar .form-li .form-group:last-child {
        width: 100px;
    }
    .navbar-Section a.nav-link {
        padding-left: 0;
        top: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #d5d5d5;
    }
    .navbar-Section .navbar-nav .nav-item {
        padding-right: 0
    }
    .navbar-light .navbar-toggler {
        color: #d9a046;
        border-color:#d9a046;
    }
    .login {
        background-size: cover;
    }
    .left-login {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .right-login {
        -ms-flex: 0 0 80%;
        -webkit-box-flex: 0;
        flex: 0 0 80%;
        max-width: 80%;
    }
    #pdfModal .modal-xl {
        max-width: 70%;
    }

}

@media (max-width:767px) {

    .row.items.all_files{justify-content:left}

    .contnet {
        padding: 0 15px;
    }
    .items .card-col h2 {
        font-size:12px
    }
    .items .col-xl-2 {
        /*
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        */
        margin-bottom: 15px;
        padding: 0 5px;
    }
    .card-col p {
        padding-bottom:15px
    }
    .newimg .items .card-col img {
        width: 93%!important;
        height: 150px !important;
        margin: 44px auto 14px!important;
        display: block!important;
    }
    .newimg .items .card-col {
        min-height: 144px!important;
        padding: 7px 5px;
        height: 100%!important;
    }
    .search-bar .btn-li:nth-child(2) {
        width: 100%;
    }
    .search-bar .form-li:nth-child(1) {
        width: 100%;
    }
    .search-bar .form-li .form-group {
        width: 100%;
        margin-bottom: 10px
    }
    .navbar-Section a.nav-link {
        padding-left: 0;
        top: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #5d5d5d;
    }
    .navbar-Section .navbar-nav .nav-item {
        padding-right: 0
    }
    .navbar-light .navbar-toggler {
        color: #d9a046;
        border-color:#d9a046;
    }
    .search-bar ul.list-unstyled{
        display: block
    }
    span.filter {
        display: none
    }
    .login {
        background-size: cover;
        padding: 0
    }
    .left-login {
        display: none
    }
    .logo-center {
        display: none
    }
    #login_form {
        width: 100%!important
    }
    .row.top-login-header img {
        width: 200px
    }
    .login .btn.btn-primary {
        width: 150px;
        height: 44px;
    }
    .footer-login p {
        font-size: 12px
    }
    #pdfModal .modal-xl {
        max-width: 100%;
    }
    i.fa.fa-power-off,
    li.nav-item.user-link {
        display: none!important;
    }
    .hide-large {
        display: block;
        font-size: 15px;
    font-family: Poppins-Bold;
    color: #6B6B6B !important;
    }

}
@media (max-device-width: 960px) and (orientation: landscape) {
    .login input.form-control {
        height: 40px
    }
    .row.top-login-header img {
        width: 200px
    }
    .login .btn.btn-primary {
        width: 150px;
        height: 44px;
    }
    .footer-login p {
        font-size: 12px
    }
    .login-content form img {
        top: 7px;
        left: 18px;
        width: 18px;
    }
    .logo-center {
        height: 290px;
        width: 35%;
    }
    #login_form {
        width: calc(100% - 35%);
        display: inline-block;
    }
    .footer-login {
        bottom: -15px;
    }
    .footer-login p {
        font-size: 12px
    }
    .login {
       padding-right: 0
    }
    .left-login {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .right-login {
        -ms-flex: 0 0 80%;
        -webkit-box-flex: 0;
        flex: 0 0 80%;
        max-width: 80%;
    }
    .logo-center {
        display: inline-block
    }
    #login_form .form-group {
        margin-bottom: 15px;
    }




}
@media (max-device-width: 568px) and (orientation: landscape) {
        .left-login {
        display: none
    }
    .logo-center {
        display: none
    }
    #login_form {
        width: 80%;
        margin: 0 auto
    }
    .right-login {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .login {
        background-size: cover;
        padding: 0
    }
    .login .btn.btn-primary {
        width: 130px;
        height: 40px;
    }

}



















/**********    ahmed start 9/8  *********//*
.right-login {
    background: #fff;
    padding: 38px 27px;
    flex-wrap: wrap;
    border-radius: 39px;
    position: absolute;
    width: 456px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
}

.right-login img {
    height: 161px;
}

form#login_form {
    width: 100%;
    margin-top: 24px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #fff6e1 inset ,-1px 1px 3px 1px #d0d0d0 !important;
}

button.btn.btn-primary {
    width: 100%!important;
    padding: 0!important;
    height: 51px!important;
    font-size: 22px;
}
*/

/******************/
a.navbar-brand img {
    margin-top: 10px;
    margin-left: 18px;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    border-bottom: 1px solid #d9a046;
    padding-bottom: 16px;
    margin-bottom: 41px;
}
section.navbar-Section.nav-result {
    background: #f2f2f2;
}
/*
body::before {
    position: absolute;
    left: 0;
    top: 166px;
    width: 87px;
    height: 189px;
    content: "";
    background-image: url("../img/leftimg.png");
    background-size: contain;
    background-repeat: no-repeat;
}
*/
h1.page-title::before {
    width: 65%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    background: #935b1b;
    content: " ";
}

.page-title {
    margin: 20px 10px 0;
    color: #935b1b;
    font-size: 22px;
    font-family: Poppins-SemiBold;
    text-transform: uppercase;
    position: relative;
}

a.navbar-brand {
    max-width: 75%;
}
/*
section.login {
    padding: 63px 0;
    min-height: 600px;
    position: relative;
}
*/
@media(max-width:1171px){
    .navbar-Section .navbar-nav .nav-item {
        padding-right: 19px;
    }

}
@media(min-width:992px){
    section.contnet {
        margin: 0 71px;
    }
}
@media(max-width:992px){
body::before{
    display:none
}
a.navbar-brand img {
    width: 84%!important;
}
li.nav-item.user-link {
    display: none!important;
}
div#navbarSupportedContent {
    margin-top: 20px;
    padding: 0 40px;
}
.hide-large {
    display: block;
    font-size: 15px;
font-family: Poppins-Bold;
color: #6B6B6B !important;
}
.fa-power-off{
    display: none;
}
}


.unclick .card-col .link-content, .unclick .card-col .link-content{
    cursor: default;
}

.swal2-styled.swal2-confirm{
    background-color: #d9a046!important;
}

.container-fluid.padd-0 li.form-li form .form-group {
    min-width: 240px;
}

.user .search-bar ul.list-unstyled{
    border:0!important
}

.user .dropdown-menu {
    transition: 0s;
}


/************  newstyle  ***********/

.newstyle .col-xl-2.col-lg-3.col-md-4.col-6.singleCategory {
    width: 50%!important;
    flex: unset;
    max-width: unset;
}

.newstyle a.link-content {
    display: flex;
}

.newstyle a.link-content {
    display: flex!important;
}

.newstyle .card-img {
    max-width: 45px;
}

.newstyle .category-card strong {
    font-weight: normal;
    color: #d9a046;
    font-size: 51px;
    font-family: Poppins-Medium;
    line-height: 14px;
    margin-top: 25px;
    margin-bottom: 35px;
    display: block;
}

.newstyle .category-card .card-col {
    height: 60px;
}

.newstyle .category-card strong {
    font-weight: normal;
    color: #d9a046;
    font-size: 39px;
    font-family: Poppins-Medium;
    line-height: 14px;
    margin-top: -2px;
    margin-bottom: 35px;
    display: block;
}
.newstyle .category-card .card-col h2 {
    font-size: 21px;
    line-height: 23px;
    font-family: Poppins-SemiBold;
    margin: -7px 0 0;
}

.card-actions ul.list-unstyled li {
    font-size: 25px;
}

.newstyle .card-actions i {
    font-size: 16px;
}
.newstyle .category-card .card-col {
    height: 60px;
    background: #fff;
    border: 1px solid #d9a046;
    background-image: url(../img/card-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    box-shadow: 0px 0px 5px 0px grey;
    border-radius: 6px;
    min-width: 158px;
}

.newstyle .category-card .card-col h2 {
    font-size: 17px;
}

.newstyle.cat .category-card .card-col h2 {
    margin: 4px 0 0;
}

@media(max-width:700px){
    .newstyle .col-xl-2.col-lg-3.col-md-4.col-6.singleCategory{
        width: 100%!important;
    }
}

@media(min-width:1350px){
    .newstyle .col-xl-2.col-lg-3.col-md-4.col-6.singleCategory{
        width: 33.3%!important;
    }
}


span.filter + .form-group + .form-group button {
    background: #393939;
}

.newstyle .category-card .card-col {
    height: 60px;
    background: #fff;
    border: 1px solid #d9a046;
    background-image: url(../img/card-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    box-shadow: 0px 0px 5px 0px grey;
    border-radius: 6px;
    min-width: 158px;
    background-position-x: 78%;
    background-color: #f2f2f2;
}

select.form-control {
    color: #c2c2c2;
}


.input2{
    display:none;
    margin-top: 20px;
}

.newimg .items .card-col img {
    width: 200px;
    height: 150px;
    display: inline-block;
    margin: 42px 0 21px;
}

.newimg .items .card-col {
    height: 385px;
}


/***********************************************************************/

.newimg .modal-dialog-centered {
    min-height: 90%;
    height: 90%;
    max-height: 90%;
}

.newimg .modal-lg, .modal-xl {
    max-width: 85%!important;
    margin:auto
}

.newimg .modal-dialog.modal-lg.modal-dialog-centered .modal-content {
    height: 100%;
    background: transparent;
    border: 0;
}

.newimg .modal-header * {
    color: white;
    border:0!important
}

.newimg .modal-header {
    border:0!important
}

#img-video-file.newimg .modal-header * {
    color: white!important;
}

.newimg#img-video-file .modal-body {
    height: 90%;
    min-height: 90%!important;
    max-height: 90%!important;
}

.newimg#img-video-file .modal-body .img-content {
    height: 100%;
    min-height: 100%;
}

.newimg#img-video-file .modal-body #pdf-viewer {
    height: 100%;
    min-height: 100%;
}

.newimg#img-video-file {
    background: #0000008f;
}


.newimg#pdfModal .modal-body {
    height: 90%;
    min-height: 90%!important;
    max-height: 90%!important;
}

.newimg#pdfModal .modal-body .img-content {
    height: 100%;
    min-height: 100%;
}
.newimg#pdfModal .modal-body #pdf-viewer {
    height: 100%;
    min-height: 100%;
}

.newimg#pdfModal {
    background: #0000008f;
}


.newimg .close{
    opacity: 1;
}

.newimg .img-content iframe{
    height: 98%;
}

.newimg #pdf-viewer iframe{
    height: 98%;
}

.newimg .img-content img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
}


.newimg #pdf-viewer img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
}


.newimg .modal-content .nextt {
    position: absolute;
    right: -29px;
    top: 50%;
    color: #fff;
    font-weight: 900;
    font-size: 35px;
    z-index: 100000000000;
    cursor: pointer;
}

.newimg .modal-content .prevt{
    position: absolute;
    left: -29px;
    top: 50%;
    color: #fff;
    font-weight: 900;
    font-size: 35px;
    z-index: 100000000000;
    cursor: pointer;
}




#pdfModal .modal-xl {
    max-width: 60%!important;
    top: 50%;
    transform: translatey(-50%);
}


#pdfModal .modal-content{
    position: absolute;
    top:0
}




#pdfModal .modal-dialog.modal-xl.modal-dialog-centered .nextt {
    position: absolute;
    right: -29px;
    top: 50%;
    color: #fff;
    font-weight: 900;
    font-size: 35px;
    z-index: 100000000000;
    cursor: pointer;
}

#pdfModal .modal-dialog.modal-xl.modal-dialog-centered .prevt{
    position: absolute;
    left: -29px;
    top: 50%;
    color: #fff;
    font-weight: 900;
    font-size: 35px;
    z-index: 100000000000;
    cursor: pointer;
}
@media(max-width:450px){
    #pdfModal .modal-dialog.modal-xl.modal-dialog-centered .prevt {
        right: -21px;
    }
}


.newimg#pdfModal .modal-dialog-centered .modal-content {
    height: 100%;
}
.newimg#pdfModal .modal-dialog-centered .modal-content .modal-body{
    overflow-y: auto;
}

.newimg#pdfModal .modal-content{
background-color: transparent!important;
border:0!important
}


/************** copy to old *****************/

#addFileModal form#add_edit_form .row .form-group.upl > div {
    flex-basis: 100%;
    margin-top: 0;
    margin: 0 10px;
}

#addFileModal form#add_edit_form .row .form-group.upl {
    display: flex;
    justify-content: space-between;
}

.category-card .card-col h2 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
}

.category-card strong {
    font-weight: normal;
    color: #d9a046;
    font-size: 56px;
    font-family: Poppins-Medium;
    line-height: 14px;
    margin-top: 25px;
    margin-bottom: 35px;
    display: block;
}


@media(max-width:992px){
    #addFileModal form#add_edit_form .row .form-group.upl > div {
        flex-basis: 100%;
        margin-top: 20px;
    }

    #addFileModal form#add_edit_form .row .form-group.upl {
        display: block;
    }

    #pdfModal .modal-xl {
        max-width: 85%!important;
    }
}

@media(max-width:450px){
    .newimg .modal-content .nextt {
        right: -21px;
    }
    .newimg .modal-content .prevt {
        right: -21px;
    }

    #pdfModal .modal-dialog.modal-xl.modal-dialog-centered .nextt {
        right: -21px;
    }
}


.nextt, .prevt{
    display: none;
}

/************** end copy to old *****************/

form#login_form {
    width: calc(100% - 40%);
    display: inline-block;
}

.login input.form-control {
    height: 48px;
    background-color: transparent;
    border-color: #D6D6D6;
    font-size: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 50px;
    border-radius: 12px;
}


#login_form input:-webkit-autofill,
#login_form input:-webkit-autofill:hover,
#login_form input:-webkit-autofill:focus,
#login_form textarea:-webkit-autofill,
#login_form textarea:-webkit-autofill:hover,
#login_form textarea:-webkit-autofill:focus,
#login_form select:-webkit-autofill,
#login_form select:-webkit-autofill:hover,
#login_form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff!important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

form#login_form input {
    color: white;
}


.btn-primary {
    background-color: transparent!important;
}


section.contnet.newimg {
    margin: 0!important;
}

@media(min-width:768px){
    .col-xl-2.col-lg-3.col-md-4.col-6.single_file {
        max-width: 261px!important;
    }
}