/**
* border-color: #d7d8db; 
**/

html,
body {
    width: 100%;
}
body * {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Arial';
    background-color: #ffffff;
    box-sizing: border-box;
    font-size: 14px;
    color: #2f2f2f;
}

body > div.container-white {
  margin-top: 50px;
}

.body-background {
  display: none; 
}

.content, p {
  line-height: 20px;
}

div::-webkit-scrollbar {
    width: 6px;
}

div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1); 
    border-radius: 5px;
}
 

div::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1); 
}

i::before {
    vertical-align: middle;
}
a:link,
a:visited {
    color: #698a51;
    text-decoration: none;
    vertical-align: middle;
}
a:hover {
    color: #698a51;
    text-decoration: none;
}
form,
table,
.table {
    margin: 0;
    padding: 0;
}
form {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #efefef;
    border-radius: 4px;
    color: #444444;
    line-height: 25px;
}
form > div.form-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #d0d0d0;
}
form > div.form-input {
    margin-bottom: 6px;
}
form > div.form-input:last-child {
    margin-bottom: 0px;
    margin-top: 10px;
}
form div.input-alert {
    font-size: 11px; 
    color: #c3c3c3;
}

form.currency .form-input {
    min-height: 36px;
    padding: 4px 0;
}

form.currency .form-input select,
form.currency .form-input input {
    width: 8%;
    box-sizing: border-box;
    padding: 8px 2px;
    border-radius: 2px;
    box-sizing: border-box;
}
form.currency .form-input select {
  width: 18%;
}
form.currency .form-input input:nth-of-type(2) {
    width: 30%;
}
form.currency .form-input input:nth-of-type(4) {
    width: 12%; 
}

form.add-balance {
  
}

form.add-balance input[type="text"] {
    padding: 10px;
}

.out-form {
    width: calc(100% - 500px);
}

.out-page {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
}

.out-title {
  font-size: 17px;
  color: #adadad;
}

.out-value {
  font-size: 22px; 
  line-height: 130%;
  margin-bottom: 10px;
}

.payment .row-item.ecs{
  background-color: #fff;
}

img {
    vertical-align: middle;
    border: 0px;
    margin: 0px;
    padding: 0px;
}

img.img-rounded {
    width: 50px; 
    height: 50px; 
    object-fit: cover;
    border-radius: 50%;
}

textarea {
    font-size: 13px;
    height: 3pc;
    margin: 0px;
    box-sizing: border-box;
    width: 100%; 
    border-radius: 5px;
}

input[type="checkbox"] {
  vertical-align: middle; 
}

/* Cначала обозначаем стили для IE8 и более старых версий
т.е. здесь мы немного облагораживаем стандартный чекбокс. */
.checkbox {
  vertical-align: middle;
  margin: 0 3px 0 0;
  width: 12px;
  height: 12px;
}
/* Это для всех браузеров, кроме совсем старых, которые не поддерживают
селекторы с плюсом. Показываем, что label кликабелен. */
.checkbox + label {
  cursor: pointer;
}

/* Далее идет оформление чекбокса в современных браузерах, а также IE9 и выше.
Благодаря тому, что старые браузеры не поддерживают селекторы :not и :checked,
в них все нижеследующие стили не сработают. */

/* Прячем оригинальный чекбокс. */
.checkbox:not(checked) {
  position: absolute;
  opacity: 0;
}
.checkbox:not(checked) + label {
  position: relative; /* будем позиционировать псевдочекбокс относительно label */
  padding: 0 0 0 40px; /* оставляем слева от label место под псевдочекбокс */
  line-height: 20px;
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.checkbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 34px;
  height: 18px;
  border-radius: 13px;
  background: #CDD1DA;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
  transition: all .2s; /* анимация, чтобы чекбокс переключался плавно */
}
/* Меняем фон чекбокса, когда он включен. */
.checkbox:checked + label:before {
  background: #9FD468;
}
/* Сдвигаем переключатель чекбокса, когда он включен. */
.checkbox:checked + label:after {
  left: 18px;
}
/* Показываем получение фокуса. */
.checkbox:focus + label:before {
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
}

/*
.radio {
  vertical-align: middle;
  width: 14px;
  height: 14px;
}
.radio + label {
  cursor: pointer;
  display: inline-block;
}
.radio:not(checked) {
  position: absolute;
  opacity: 0;
}
.radio:not(checked) + label {
  position: relative;
  padding: 0 0 0 24px;
}
.radio:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #CDD1DA;
  border-radius: 50%;
  background: #FFF;
}
.radio:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9FD468;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
  opacity: 0;
  transition: all .2s;
}
.radio:checked + label:after {
  opacity: 1;
}
.radio:focus + label:before {
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
}

*/

textarea,
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="email"],
select {
    border-radius: 6px;
    font-size: 13px;
    padding: 7px;
    color: #555;
    vertical-align: middle;
    margin: 0;
    width: 320px;
    max-width: 100%;
    border: 1px solid #dedede;
}
button,
input[type="submit"] {
    padding: 7px 16px 7px;
    margin: 0;
    font-size: 12.5px;
    display: inline-block;
    zoom: 1;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    vertical-align: middle;
    line-height: 15px;
    text-align: center;
    text-decoration: none;
    background: none;
    background-color: #5e81a8;
    color: #fff;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: #ссс;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
}

a.button,
.button {    
    background: #328275;
    border-color: #30776c #30706e #30706e;
    box-shadow: 0 1px 0 #30706e;
    color: #fff;
    text-shadow: 0 -1px 1px #30706e, 1px 0 1px #30706e, 0 1px 1px #30706e, -1px 0 1px #30706e;
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    height: 28px;
    margin: 0;
    padding: 0 12px 2px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}

.button.button-default {
    background: #ececec;
    border-color: #d6d6d6 #d6d6d6 #b1b1b1;
    box-shadow: 0 1px 0 #b1b1b1;
    color: #4c4c4c;
    text-shadow: none;
}
.button.button-danger {
    background: #de4949;
    border-color: #d04040 #c73434 #c12525;
    box-shadow: 0 1px 0 #ffb6b6;
    color: #ffffff;
    text-shadow: none;
}
.button.button-success {
    background: #4CAF50;
    border-color: #388e3c #2e8831 #328e35;
    box-shadow: 0 1px 0 #caffcc;
    color: #ffffff;
    text-shadow: none;
}
.button:active {
  background: #2e7065;
  border-color: #2f6968;
  box-shadow: inset 0 2px 0 #2f6968;
  vertical-align: top;
  outline: 0;
  transform: translateY(1px);
}

.button:focus {
    box-shadow: 0 0 4px 0px #30706e;
    border: 1px solid #30706e;
    outline: 0;
}

.button.button-default:focus {
    box-shadow: 0 0 4px 0px #a5a5a5;
    border: 1px solid #adadad;
    outline: 0;
}
.button.button-default:active {
    background: #ececec;
    border-color: #b9b9b9;
    box-shadow: inset 0 1px 0 #c7c7c7;
}


textarea[name="msg"] {
  min-height: 128px;
  width: 100%;
}

.form-horizontal {
  margin: 0;
  border-radius: 0;
  padding: 20px; 
}

.control-group {

}

form.editor {
  background-color: #efefef;
}

.editor-box {
  background-color: #ffffff; 
  border: 1px solid #d8d8d8;
  margin-top: 15px;
}

.editor-title {
  padding: 5px 10px;
  background-color: #ececec;
  font-weight: bolder;
  font-size: 13px;
  border-bottom: 1px solid #d8d8d8;
}

.editor-description {
  padding: 10px 15px;
  border-top: 1px solid #d8d8d8;
  line-height: 13px; 
  font-size: 11px;
  background-color: #f8ffff;
}


.editor-description {
  vertical-align: middle;
}

.editor-box:first-child {
  margin-top: 0; 
}

form.editor input[type="text"] {
  width: 100%; 
  box-sizing: border-box;
}

form.editor .control-group {
  padding: 10px;
}

form.editor .control-group:first-child {
  margin-top: 0;
}



.preview-screenshots img {
  width: 80px; 
  height: 60px; 
  object-fit: cover;
  margin: 5px 5px 5px 5px;
  border-radius: 3px;
}

.preview-screenshots {
  padding: 0 10px 10px 5px;
}

.preview-image {
  position: relative;
}

.preview-image img {
  width: 100%; 
  max-height: 180px;
  object-fit: cover;
}


.preview-image:empty, 
.preview-screenshots:empty {
  display: none;
}


.list-icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px; 
  width: 44px; 
  border: 1px solid #a1a1a1; 
  margin: 2px; 
  box-sizing: border-box;
}


.container-panel {
  background-color: #152931;
  position: fixed;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  z-index: 4;
}


.table {
  background-color: #ffffff;
  width: 100%;
  border-spacing: 0;
}


.table th {
  text-align: left;
  padding: 10px; 
  background-color: #a5b2b5; 
  color: #ffffff;
  font-weight: normal;
  border-color: #deebee;
}

.table th:first-child,
.table td:first-child {
  padding-left: 10px;
}

.table tr:nth-of-type(odd) {
  background-color: #fafafa;
}

.table td {
  padding: 5px;
}

.table-buttons {
  width: 160px;
  text-align: right;
}


.table-buttons i::before {
  font-size: 18px;
  line-height: 14px;
}


.control-group.categories {
  overflow-y: auto; 
  text-align: left; 
}


.control-group.categories label {
  cursor: pointer;
}

.control-group.categories select {
  width: 100%;
  cursor: pointer;
}



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

.pull-right {
  float: right;
}
div.alert {
    padding: 10px;
    color: #ffffff;
    background-color: #daa87e;
    margin-bottom: 10px;
    box-shadow: 0px 0px 6px rgba(47, 83, 151, 0.2);
    border-radius: 6px;
}
div.alert:last-child {
    margin-bottom: 10px;
}
div.alert.alert-error {
    background-color: #c96161;
}
div.alert.alert-success {
    background-color: #83bd64;
}
div.alert.alert-info {
    background-color: #73a0ca;
}
div.alert i::before {
    font-size: 16px;
    vertical-align: top;
}
div.header {
    background-color: #649f44;
    zoom: 1;
    z-index: 3;
    line-height: 1.5em;
    height: 43px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}
div.crumb {
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 15px;
}
div.crumb::after {
    box-sizing: border-box;
    height: 100%;
    width: 30px;
    position: absolute;
    right: 0px;
    top: 0px;
    content: " ";
    -webkit-box-shadow: inset -24px 0px 30px -13px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset -24px 0px 30px -13px rgba(255, 255, 255, 1);
    box-shadow: inset -24px 0px 30px -13px rgba(255, 255, 255, 1);
}
ul.breadcrumb {
    width: 500px;
    list-style: none;
    padding: 0;
    margin: 10px 0;
    box-sizing: border-box;
}
ul.breadcrumb li {
    display: inline-block;
    margin: 0 .5em 0 .7em;
}
ul.breadcrumb a {
    display: inline-block;
    background: #ddd;
    padding: 5px 10px;
    text-decoration: none;
    color: #444;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    position: relative;
}
ul.breadcrumb a:hover {
    background: #efc9ab;
}
ul.breadcrumb a::before,
ul.breadcrumb a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1em;
    background: #ddd;
    transform: skew(-10deg);
}
ul.breadcrumb a::before {
    left: -.5em;
    border-radius: 5px 0 0 5px;
}
ul.breadcrumb a:hover::before {
    background: #efc9ab;
}
ul.breadcrumb a::after {
    right: -.5em;
    border-radius: 0 5px 5px 0;
}
ul.breadcrumb a:hover::after {
    background: #efc9ab;
}
ul.breadcrumb .current,
ul.breadcrumb .current:hover {
    font-weight: bold;
    background: none;
}
ul.breadcrumb .current::after,
ul.breadcrumb .current::before {
    content: normal;
}

.post {
  min-height: 50px; 
  border-bottom: 1px solid #eeeeee;
  background-color: #f9f9f9
}


.post:nth-of-type(odd) {
  background-color: #fff;
}

.post:last-child {
  border-bottom: 0;
}

.post .post-icon {
  display: inline-block;
  float: left; 
  height: 50px;
}

.post .post-icon i.icon::before {
  font-size: 30px;
  color: #5d5d5d;
  padding: 10px;
}

.post .post-icon i.active::before {
  color: #127700;
}

.post .post-icon i.icon-isp5::before {
  color: #248CD5;
}

.post .post-title {
  min-height: 50px;
  padding: 8px;
  padding-left: 54px;
  line-height: 20px;
  position: relative;
}

.post .post-title .server-name {
  font-weight: bold;
}
.post .post-title .server-desc span {
  display: block;
}

.post .post-title .server-ip {
  border: 1px solid #225533;
  background-color: #2b6a40;
  display: inline-block;
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 12px;
}

.post > div {
  
}

.right-menu {
    border: 1px solid #c1c1c1;
    margin: 10px; 
    box-shadow: 0 2px 9px rgba(0,0,0,.2);
}

.right-menu > div > span,
.right-menu > div > a {
  display: block; 
  padding: 10px;
  border-bottom: 1px solid #ececec;
  background-color: white;
}


.slider {} .slider > a {
    border: 1px solid #b7b7b7;
    display: inline-block;
    text-align: center;
    margin-right: 4px;
}
.row {
    display: block;
    box-sizing: border-box;
}
.row-item {
    display: inline-block;
    vertical-align: top;
}
.row-item.ghj,
.row-item.ecs {
    display: block;
    flex: 1 1 100%;
}
.row-item.ecs h1 {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    color: #585858;
}
.row.row-table {
    display: table;
    width: 100%;
}
.row.row-table .row-item {
    display: table-cell;
    max-width: 100%;
}

.menu-header .menu {
display: flex;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
}


.menu-header .menu li {
  display: inline-block;
  padding: 0;
}

.paysystems {
  border: 1px solid #d2d2d2;
  padding-bottom: 10px;
  display: block;
}

.paysystems .row-item.payed {
  color: #3a9816; 
  font-size: 24px;
  line-height: 30px;
}

.paysystems .row-item.row-pay form {
  border: inherit;
  background-color: transparent; 
  padding: 0; 
  margin: 0; 
  display: inline-block;
}

.paysystems .row-item.row-title {
  padding: 20px 0;
  text-align: center; 
  font-size: 20px; 
  color: #282828; 
  border-bottom: 1px solid #d2d2d2;
}

.paysystems .row-item {
  display: block;
  padding: 10px 10px 0px 10px;
  width: 100%;
}

.paysystems .row-item a {
  border: 1px solid #d2d2d2; 
  padding: 10px;
  display: block;
}

.paysystems .row-item:hover a::before,
.paysystems .row-item:hover a {
  border-color: #799abb; 
}

.paysystems .row-item:active a::before {
  background-color: #7a9dbc;
}

.paysystems .row-item img {
  display: inline-block;
  vertical-align: top;
}

.paysystems .row-item .paysystems-title b {
  font-size: 18px;
}

.paysystems .row-item .paysystems-title {
  display: inline-block;
  padding-left: 20px;
  vertical-align: middle;
}



.body {
    margin: 43px auto 0 auto;
}

.row-item.gfd {
    width: 34px;
}
.row-item.content {
    box-sizing: border-box;
}

.row-item.sidebar {
  
}

.toggle-menu .icon::before {
    font-size: 29px;
    line-height: 20px;
    color: #eaeaea;
}

.row-item.sidebar a {
  display: block; 
  padding: 10px; 
  border-bottom: 1px solid #dadada;
}

.row-item.grs {
    width: 100%;
}
.row-item.avu {
    width: 70px;
}
.pagination,
.pagination ul,
.pagination ul li {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 0;
}
.pagination {} .pagination ul {
    display: block;
}
.pagination ul li {
    display: inline-block;
}
.pagination ul li b,
.pagination ul li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 4px solid #ffffff;
    line-height: 20px;
}
.pagination ul li b {
    color: #c7c7c7;
    border-bottom: 4px solid #e0e0e0;
}
.pagination ul li.active a[href],
.pagination ul li a[href]:hover {
    border-bottom: 4px solid #dcedd3;
}
.empty {
    text-align: center;
    font-size: 20px;
    color: #8c8c8c;
    padding: 20px 0 60px 0;
}
.empty .icon {
    display: block;
    padding: 10px;
}
.empty .icon::before {
    font-size: 200px;
    color: #bfbfbf;
    border-radius: 50%;
    padding: 20px;
}
.rwl {
    width: 100%;
    border: 1px solid #dfdfdf;
    border-radius: 6px; 
    overflow: hidden;
}

.rwl-image {
    width: 320px;
    display: block;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
}

.rwl-image input {
    width: 100%;
}
.rwl-image > img {
    width: auto;
    max-width: 100%;
    border-radius: 10px;
    max-height: 200px;
    object-fit: scale-down;
}


.rwl-title {
    vertical-align: top;
    color: #646464;
    display: block;
    padding-top: 10px;
}

.rwl-buy,
.glk {
    background-color: #fafafa;
}
.rwl-author,
.rwl-description {
    padding: 10px;
    background-color: #fafafa;
}
.rwl-menu {
    display: block;
    /* float: left; */
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}
.rwl-menu a.btn {
    padding: 7px 6px;
}
.rwl-menu i::before {
    font-size: 20px;
}
.rwl-nav {
    display: flex;
    align-items: flex-start;
    padding: 0 20px;
}

.rwl-nav .btn {
    border-radius: 4px 4px 0 0;
    border: 1px solid #efefef;
    background-color: #efefef;
    margin: 0;
    border-bottom: 1px solid #dfdfdf;
    padding: 8px 20px;
    text-decoration: underline;
}

.rwl-nav .btn-active {
    border: 1px solid #d0d0d0;
    border-bottom: 1px solid #fafafa;
    background-color: #fafafa;
    text-decoration: none;
}

.wrap-rwl-info {
    margin: 20px 0 0 0;
}

.rwl-buy {
    padding: 10px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
}

.rwl-price-button {
  display: inline-flex;
  align-items: center;
}

.rwl-price {
    display: inline-flex;
    align-items: center;
}

.rwl-price-old {
  display: block;
    font-size: 17px;
    text-decoration: line-through;
}
.rwl-price-current {
font-size: 21px;
    display: block;
    color: #ec9c4e;
}


.form-annotation {
	font-size: 11px;
    line-height: initial;
    margin: 10px 0;
    color: gray;
}

.form-annotation::before {
	content: "*"; 
	color: red; 
	margin-right: 5px;
	display: inline-block;
}

.paytype {
	margin: 0 0 10px 0; 
	padding: 10px; 
	background-color: #fff; 
	box-sizing: border-box;
}

.user_cash .paytype {
  padding: 10px 0;
}

.paytype > img {
	display: inline-block;
}

.paytype > span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}

.paytype-status, 
.payout {
  background-color: #949494;
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 12px;
}

.paytype-status-1,
.payout-status-1 {
  background-color: green; 
}
.paytype-status-2,
.payout-status-2 {
  background-color: red; 
}
.payout-status-3 {
  background-color: black; 
}

.pautype-btn {
  float: right;
}

.all-product {
    display: inline-block;
    font-size: 12px;
    padding: 5px 10px;
    color: #fff !important;
    background-color: #36585e;
    text-transform: lowercase;
    box-shadow: 0 2px 9px rgba(0,0,0,.3);
    border-radius: 2px;
}
.all-product:hover {
    background-color: #51858e;
}

a.btn,
.btn {
    display: inline-block;
    padding: 10px;
    background-color: #d0d0d0;
    font-weight: bold;
    color: #5b5b5b;
    border-radius: 4px;
    text-align: center;
    margin: 2px; 
}
a.btn:hover,
.btn:hover {
    opacity: 0.9;
}
a.btn-block,
.btn-block {
    display: block;
}
.btn i::before {
    font-size: 18px;
    line-height: 13px;
}
a.btn-active,
.btn-active,
a.btn-link,
.btn-link {
    background-color: transparent;
    color: #4f4f4f;
}
.rwl-author a.btn-link {
    padding: 0px 0;
    margin-bottom: 10px;
}

.klf {
    border: 1px solid #dfdfdf;
    margin-top: -1px;
    border-radius: 6px;
}

.klf > div {
    display: none;
}

.klf > div.active {
    display: block;
}


.profile.row {
  display: block;
  box-shadow: 0 2px 9px rgba(0,0,0,.2);
  border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.profile .row-item.ecs,
.profile .row-item.ghj {
  width: 100%;
  display: block;
} 


.profile .row-item.ghj {
  background-color: white; 
}

.profile .profile-background {
    height: 200px;
    background-color: #152931;
}

.profile .profile-image,
.profile .profile-title,
.profile .profile-status {
  position: relative;
}
.profile .profile-image {
    padding-left: 20px;
    padding-bottom: 20px;

}
.profile .profile-image img {
    border-radius: 10px;
    height: 120px;
    width: 120px;
    margin-top: -60px;
}
.profile .profile-title {
    padding: 10px 10px;
    font-size: 24px;
    display: inline-block;
}
.profile .profile-status {
    color: #868686;
    font-size: 15px;
}
.profile .pagination {
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    font-weight: bolder;
}

.profile .pagination .counter {
    display: inline-flex;
    /* float: right; */
    /* border: 1px solid red; */
    min-width: 22px;
    margin-left: 2px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 18px;
    background-color: #adadad;
    color: #fff;
    border-radius: 8px;
}


.info {
    padding: 10px;
}


a.btn-success,
.btn-success {
    background-color: #649f44;
    color: #ffffff;
}
a.btn-primary,
.btn-primary {
    background-color: #436aa0;
    color: #ffffff;
}
a.btn-danger,
.btn-danger {
    background-color: #b62e2e;
    color: #ffffff;
}
a.btn-warning,
.btn-warning {
    background-color: #c5511f;
    color: #ffffff;
}
.rwl-type > .row-item {
    display: block;
}
a.lGray > i::before,
a.lGray {
    color: #b2b2b2;
}
a.lGray {
    border-bottom: 0;
}
.copy {
    background-color: #373b43;
    color: #f6f6f6;
    padding: 4px;
}
.copy,
.main_razd {
    background-image: url(../img/back_title.png);
    background-repeat: repeat-x;
    background-size: contain;
}
code {
    display: block;
    overflow: scroll;
    max-height: 100px;
}
span.on {
    color: #2b8c00;
    font-size: small;
}
span.off {
    color: #c80000;
    font-size: small;
}
img.captcha {
    border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #d2d2d2;
}
input.captcha {
    max-width: 70px;
}
div.cit {
    color: #424242;
    font-size: small;
    border: 1px solid #9dc2ff;
    border-left: 4px solid #9dc2ff;
    background-color: #fff9f4;
    padding-left: 8px;
    padding: 2px;
    margin: 2px;
    letter-spacing: 0px;
    line-height: 14px;
}
div.rows-back {
    background-color: #efefe7;
    margin-bottom: 6px;
}
div.rows {
    color: #ecc04a;
    background-color: #efefe7;
    background-image: url(../ico/wizard-step-grey-grey.png);
    background-repeat: no-repeat;
    background-position: right;
    padding: 6px 6px 6px 6px;
    margin: 0px;
    display: inline-block;
    min-width: 30%;
}
div.rows-active {
    color: #efefe7;
    background-color: #ecc04a;
    background-image: url(../ico/wizard-step-blue-grey.png);
}
div.rows-act {
    background-image: url(../ico/wizard-step-lblue-blue.png);
}
div.rows-margin {
    margin-left: -4px;
}
.menu {
    background-color: #f4f4f4;
    display: block;
    padding: 2px;
    border-right: 1px solid #8ED0FF;
    border-left: 1px solid #8ED0FF;
}
.news {
    background-color: #f8f8f8;
    padding: 4px 6px;
    border: 2px solid #efeded;
    margin: 1px 0;
    color: #777;
}
.ads {
    background-color: #f0f0f0;
    padding: 4px;
}
.copy {
    margin: 0 4px 0 4px;
    border-radius: 0px 0px 6px 6px;
    -moz-border-radius: 0px 0px 6px 6px;
}
.nav {
    margin: 0px;
}
div.nav-panel {
    padding: 10px;
}
div.nav-panel div.description {
    border: 1px dotted #cfcfcf; 
    padding: 6px;
    margin: 0 0 10px 0; 
    background-color: #fffef0;
}

.home-menu,
.home_menu,
.main_menu {
    padding: 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #efefef;
    box-shadow: 0px 0px 6px rgba(47, 83, 151, 0.1);
}
.home-news {
    background-color: #e4e4e4;
    background-image: url(../img/back_news.png);
    background-repeat: repeat-x;
    background-size: contain;
}
#block-news {
    background-color: #f1f1f1;
    margin: 0 4px 0 4px;
    border-bottom: 0px;
}
.main_razd {
    background-color: #373b43;
    color: #f6f6f6;
    padding: 4px 4px 4px 8px;
    border-bottom: 1px solid #e2e2e2;
}
.title-menu {
    color: #adadad;
    font-size: 20px;
    margin-bottom: 20px;
}
.main_razd a {
    color: #f6f6f6;
}
div.nav2,
div.nav1 {
    padding: 10px;
    margin-top: 10px;
    background-color: #fcfcfc;
    border: 1px solid #ececec;
    word-break: break-all;
}
a.close {
    float: right;
    display: inline-block;
    font-size: 20px;
    line-height: 10px;
    padding: 2px 6px;
    color: #ff8a8d;
}

.welcome {
  float: left;
}

.media-body {
    position: relative;
}

@media (min-width: 360px) {
    .hidden-phone {
        display: inline-block !important;
    }
}
.copy,
.copy a {
    color: #ffffff;
    text-align: center;
}
.lang {
    padding: 4px;
    text-align: right;
}
.footer {
    padding: 6px;
    position: relative;
    text-align: center;
}
.foot {
    background-color: #fffddf;
    border-bottom: 1px solid #bfbfbf;
    padding: 5px;
}
.pgen {
    display: inline-block;
    padding-left: 4px;
    color: #3c3c3c;
    font-size: x-small;
}
.text-green {
    color: green;
}
.text-red {
    color: red;
}
.text-gray {
    color: gray;
}
.dispaly-block {
    display: block;
}
.row-small {
    display: block;
}
.grid {
    display: block;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}
.grid-item {
    flex-basis: calc(50% - 5px); 
    display: none;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.grid-item:nth-child(-n+6) {
    display: inline-block;
}
.grid-item-content {
    background-color: #ffffff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
}
.grid-item-content img {
    width: 100%;
    box-sizing: border-box;
    height: 80px;
    object-fit: cover;
}
.grid-item-image {
    background-image: url(../img/no-image.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.grid-item-title {
    text-align: left;
    height: 20px;
    line-height: 20px;
    margin-top: 10px;
    word-break: break-all;
    overflow: hidden;
    position: relative;
}
.grid-item-title::before {
    text-align: left;
    height: 20px;
    width: 40px;
    position: absolute;
    right: 0px;
    top: 0px;
    content: " ";
    -webkit-box-shadow: inset -20px 0px 29px -9px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset -20px 0px 29px -9px rgba(255, 255, 255, 1);
    box-shadow: inset -20px 0px 29px -9px rgba(255, 255, 255, 1);
}
.grid-item-btn {
    text-align: right;
}
.grid-item-btn .grid-price {
    color: #ff7300;
}

.grid-tariff .grid-item {
  width: 25%; 
}

.grid-tariff .grid-item .grid-item-content {
  background-color: #f4fff4; 
}

.grid-tariff .grid-item .grid-item-content .grid-item-title {
  border-bottom: 1px solid #f8f8f8;  
  text-align: center;  
  font-size: 20px; 
  height: auto; 
  padding: 6px 0; 
  font-weight: bolder; 
}

.grid-tariff .grid-item .grid-item-content .grid-item-btn {
  border: 1px solid #d7d7d7;
background: #fcfcfc;
    background: -webkit-linear-gradient(top, #fcfcfc, #f5f5f5);
    background: -moz-linear-gradient(top, #fcfcfc, #f5f5f5);
    background: -o-linear-gradient(top, #fcfcfc, #f5f5f5);
    background: linear-gradient(to bottom, #fcfcfc, #f5f5f5); 
  text-align: center;  
  font-size: 20px; 
  height: auto; 
  padding: 6px 0; 
  font-weight: bolder; 
  border-radius: 5px;
}

.grid-tariff .grid-item .grid-item-content .grid-item-desc {
  padding: 10px 0;
}

.grid-tariff .grid-item .grid-item-content .grid-item-desc span {
  padding: 2px 0;
  display: block;
}
.grid-tariff .grid-item .grid-item-content .grid-item-desc span strong {
  color: #1a8ee6; 
}




.goods {
    border: 1px solid red;
}
.goods-content {
    display: block;
}
.goods > div {
    border: 1px solid blue;
}
.nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-pills {
    display: inline-block;
}
.nav-pills li {
    display: none;
}
.nav-pills:hover {} .nav-pills li.active {
    display: inline-block;
}
/**
*  
*/

div.form-auth {
    padding: 30px 0;
}
form.auth {
    border: 1px solid #c9c9c9;
    padding: 30px;
    width: 90%;
    max-width: 360px;
    margin: 0px auto;
}
form.auth input,
form.auth input:focus,
form.auth input:active {
    border: 0;
    border-radius: 0;
    outline: none;
}
form.auth .form-input {
    border: 1px solid red;
}
form.auth label.form-input {
    border: 1px solid #d3d3d3;
    display: block;
    position: relative;
    background-color: transparent;
    margin-bottom: 10px;
    border-radius: 5px;
}
form.auth label.form-input:focus {
    border-color: #4fb071;
}
form.auth label.form-input-checkbox {
    margin-bottom: 10px;
    padding: 6px 0;
    cursor: pointer;
}
form.auth label.form-input input[type="tel"],
form.auth label.form-input input[type="text"],
form.auth label.form-input input[type="password"] {
    width: 100%;
    padding: 10px;
    padding-left: 50px;
    box-sizing: border-box;
    margin: 0;
    border-radius: 5px;
}
form.auth label.form-input i::before {
    font-size: 22px;
    position: absolute;
    top: 7px;
    left: 12px;
    color: #cfcfcf;
}
form.auth label.form-captcha {
    display: flex;
}
form.auth label.form-captcha input[type="tel"] {
    padding-left: 10px;
}
form.auth label.form-captcha img {
    
}

.form-auth-links {
  display: block;
  width: 90%;
  max-width: 360px;
  margin: 0px auto;
  padding: 10px 0;
  text-align: center;
  font-weight: bolder;
}

.nav-box a {
  position: relative;
}

.nav-box {
    background-color: #ffffff;
    /* box-shadow: 0 2px 9px rgba(0,0,0,.2); */
}

.nav-box .box-toggle a {
  flex-grow: 10;
}

.nav-box .box-toggle {
  display: flex;
  width: 100%;
  flex-basis: 100% 40px; 
}

.nav-box .box-item {
  display: none;
}

.nav-box .box-item .category-slug::before {
  margin-right: 4px;
}

.row-item.sidebar {
  display: none;
}

.row-item.sidebar .box-toggle a {
  width: calc(100% - 40px);
}

.row-item.sidebar .box-toggle a.nav-toggle {
width: 40px;
    /* flex-grow: 1; */
    font-size: 17px;
    line-height: 14px;
}
.box-toggle.active a.nav-toggle .xm::before {
  content: "\EA4D";
  color: black;
}


.row-item.sidebar .nav-box a:hover {
  background-color: #efefef;
}

.control-group.categories {
  height: 240px; 
  overflow-y: auto;
}


.profile-background {
  position: relative;
}

.background-change {
    display: inline-block;
    position: absolute;
    top: 15px;
    /* color: #4bb4ff; */
    right: 15px;
    border: 1px solid #949494;
    padding: 5px;
    border-radius: 5px;
    opacity: .3;
}


.background-change i::before {
  color: #a7a7a7;
}
.background-change:hover {
  opacity: 1;

}

.cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%; 
  justify-content: space-between;
}

.card {
    display: inline-block; 
    background-color: #fff; 
    vertical-align: top; 
    width: 250px;
    box-shadow: 0 2px 9px rgba(0,0,0,.3);
}

.cards .card {
  
  margin-bottom: 20px;
}

.card .thumbnail {
    height: 150px; 
    width: 100%; 
    object-fit: cover;
    transition: 1s;
}

.category-slug {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 1px 2px;
  text-align: left;
  display: inline-flex;
  justify-content: center;
    align-items: center;
}

.category-group-slug {
    border: 1px solid #d2d2d2;
    margin-right: 3px;
    background-color: #ffffff;
}

.category-slug span {
  margin-left: 5px;
}

.category-group-slug span {
  display: none;
}

.category-slug::before {
  display: inline-block; 
  width: 22px; 
  height: 22px; 
  content: " "; 
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
}

.category-slug-wordpress::before {
  background-image: url(../img/wordpress.png); 
}
.category-slug-dcms-social::before {
  background-image: url(../img/dcms-social.png); 
}
.category-slug-dcms-fiera::before {
  background-image: url(../img/dcms-fiera.png); 
}
.category-slug-dcms-6::before {
  background-image: url(../img/dcms-6.png); 
}
.category-slug-dcms-7::before {
  background-image: url(../img/dcms-7.png); 
}
.category-slug-johncms::before {
  background-image: url(../img/johncms.png); 
}
.category-slug-html::before {
  background-image: url(../img/html.png); 
}
.category-slug-php::before {
  background-image: url(../img/php.png); 
}
.category-slug-joomla::before {
  background-image: url(../img/joomla.png); 
}
.category-slug-javascript::before {
  background-image: url(../img/javascript.png); 
}
.category-slug-drupal::before {
  background-image: url(../img/drupal.png); 
}
.category-slug-opencart::before {
  background-image: url(../img/opencart.png); 
}
.category-slug-woocommerce::before {
  background-image: url(../img/woocommerce.png); 
}
.category-slug-mybb::before {
  background-image: url(../img/mybb.png); 
}
.category-slug-magento::before {
  background-image: url(../img/magento.png); 
}
.category-slug-python::before {
  background-image: url(../img/python.png); 
}
.category-slug-css::before {
  background-image: url(../img/css.png); 
}
.category-slug-java::before {
  background-image: url(../img/java.png); 
}
.category-slug-ruby::before {
  background-image: url(../img/ruby.png); 
}
.category-slug-c-code::before {
  background-image: url(../img/c-code.png); 
}
.category-slug-c-sh::before {
  background-image: url(../img/c-sh.png); 
}
.category-slug-vb-net::before {
  background-image: url(../img/vb-net.png); 
}
.category-slug-rootpanel::before {
  background-image: url(../img/rootpanel.png); 
}
.category-slug-icons::before {
  background-image: url(../img/icons.png); 
}
.category-slug-logos::before {
  background-image: url(../img/logos.png); 
}
.category-slug-game-assets::before {
  background-image: url(../img/game-assets.png); 
}

.nav-box .counter {
    display: inline-flex;
    float: right;
    /* border: 1px solid red; */
    min-width: 20px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 15px;
    background-color: #adadad;
    color: #fff;
    border-radius: 8px;
}

.nav-box .counter-new {
  color: red;
  float: right;
  font-size: 11px;
  margin-left: 2px;
  margin-top: -4px;
}
.nav-box .counter-new::before{
  content:"+";
}

.card:hover .thumbnail {
    opacity: .8;
    transition: 1s;
}

.card .card-title {
    padding: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    height: 80px;
    font-weight: bold;
    color: #384e66;
}

.card-bottom {
    padding: 10px;
    align-items: center;
    width: 100%;
    display: flex;
    border-top: 1px solid #efefef;
}

.card-bought .card-bottom {
    justify-content: space-between;
}

.card-panel {
    padding: 10px;
}


.card-panel a {
    border: 1px solid #cecece;
    display: inline-flex;
    height: 28px;
    width: 28px;
    line-height: 23px;
    font-size: 17px;
    /* align-items: center; */
    justify-content: center;
}
.card-panel a:hover {
    box-shadow: 0px 0px 4px #c7c7c7;
    background-color: #ececec;

}
.card-panel a i {
  color: #757575;
}

.card-bottom .price {
  display: inline-block;
  width: 60px;
  text-align: center;
  border-radius: 2px;
  outline: 0!important;
  color: #58666e;
  background-color: #fcfdfd;
  border: 1px solid #dee5e7;
  border-bottom-color: #d8e1e3;
  -webkit-box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
  box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 0 2px 0;
  vertical-align: middle;
  margin-left: auto;
}

.card-bottom .price s {
  
}

.card-bottom .price.orange {
    background-color: #ff7e00;
    border-color: #e06f00;
    text-shadow: 0 0 1px black;
    color: #fff;
}
.card-bottom .price.blue {
  background-color: #4a9bbb; 
  border-color: #4a9bbb; 
  color: #fff;
}

.card-bottom .product-deleted {
    display: inline-block;
    padding: 6px;
    color: red;
}

.registration {
    width: 90%;
    max-width: 360px;
    margin: 0px auto;
}

.registration .form-horizontal {
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding: 20px;
}

.registration .form-horizontal .control-group {
      margin-bottom: 10px;
}
.registration .form-horizontal .control-group:last-child {
  margin-bottom: 0;
  margin-top: 20px;
}
.registration .form-horizontal .controls-flex {
    display: flex;
}

.registration .form-horizontal .controls input {
  padding: 10px 10px 10px 20px;
}
.registration .form-horizontal .controls input.captcha {
  padding: 7px;
}


.bought-link {
  position: relative;
}

.head .nav-user a {

}

.head .nav-user a .counter {
    position: absolute;
    top: 9px;
    /* border: 1px solid #869fb1; */
    right: 4px;
    background-color: #e07a00;
    text-shadow: 1px 1px 1px black;
    color: #fff;
    font-size: 11px;
    line-height: 17px;
    border-radius: 8px;
    display: flex;
    padding: 0 6px;
    z-index: 2;
}

.head .nav-user a .counter:empty {
  display: none;
}




.head {
    background-color: #152931;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

img.web-logo {
    display: none;
}
img.mobile-logo {

}

.head a {
    display: inline-block;
}
.head .logo a {
    padding: 14px 10px;
}

.nav-menu {
  display: none;
}

.head .nav-user a i::before {
    font-size: 20px;
    line-height: 15px; 
}

.head .nav-user {
    display: inline-flex;
}

.head .nav-user a,
.head .nav-menu a {
    padding: 16px 13px;
    color: #869fb1;
    position: relative;
}
.head .nav-user a:hover,
.head .nav-menu a:hover {
    background-color: #06171d; 
    color: #e2e2e2;
}




.head-menu {
  display: none;
}

.head-menu a {
    padding: 10px 8px;
    display: inline-block;
}

.head-menu a:hover {
    background-color: #f3f3f3;
}



.head-menu .search {
  display: flex;
  padding: 10px 0;
}

.head .nav-user .nav-user-menu > a {
    padding: 9px 14px;
    position: relative;
}

.head .nav-user .nav-user-menu.active > a {
    background-color: #06171d;
    color: #e2e2e2;
}

.head .nav-user .nav-user-menu a.user-menu-toggle img {
	width: 32px; 
	height: 32px; 
	object-fit: cover;
}

.head .nav-user .nav-user-menu a.user-menu-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: " ";
}

.head .nav-user .nav-user-menu.active a.user-menu-toggle::after {
    border-top: 0;
    border-bottom: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.head .nav-user-menu {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.head .nav-user-menu .img-rounded {
    height: 32px; 
    width: 32px;
    border-radius: 5px;
}

.head .nav-user-menu .nav-user-menu-items {
    position: absolute;
    right: 0px; 
    top: calc(100% - 2px); 
    background-color: #fff; 
    box-shadow: 0px 2px 6px rgba(47, 83, 151, 0.3);
    width: 240px; 
    z-index: 3;
    display: none;
    padding: 0px 0;
}
.head .nav-user-menu.active .nav-user-menu-items {
    display: inline-block;
}

.head .nav-user-menu .nav-user-menu-items a i::before {
    font-size: 16px;
    vertical-align: bottom;
    line-height: 17px;
    padding: 0;
}

.head .nav-user-menu .nav-user-menu-items a {
  display: block;
  padding: 6px 10px;
  width: 100%;
  color: #000;
}

.head .nav-user-menu .nav-user-menu-items a:hover {
  background-color: #f5f6f8; 
  color: #000;
}

.nav-user-menu-items-group { 
  padding: 10px 0; 
  border-bottom: 1px solid #edf1f2; 
}

.nav-user-balance {
  background-color: #edf1f2;
  padding: 10px;
}

.nav-user-balance-add,
.nav-user-balance-out {
  margin-top: 10px; 
}

.head .nav-user-menu .nav-user-balance .out-balance,
.head .nav-user-menu .nav-user-balance .add-balance {
    color: #ffffff !important;
    background-color: #27c24c;
    border-color: #27c24c;
    padding: 5px 10px !important;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
    outline: 0!important;
    display: inline-block;
    width: 100%; 
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}

.head .nav-user-menu .nav-user-balance .out-balance {
    background-color: #ff9600;
    border-color: #ff8600;
}

.head .nav-user-menu .nav-user-balance .add-balance:hover {
  background-color: #23ad44; 
  border-color: #23ad44;
}

.head .nav-user-menu .nav-user-balance .out-balance:hover {
  background-color: #e68700; 
  border-color: #ef7d00;
}

.owl-preview {
  height: 320px; 
  width: 320px;
  max-width: 100%;
  margin-bottom: 10px; 
      box-shadow: 0px 2px 5px #d6d6d6;
}

.rwl-modal-opener .owl-preview {
  box-shadow: 0px 2px 5px rgba(0,0,0,.7);
}

.owl-preview-nav {
  display: none;
}

.owl-preview-image {
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  background-size: 100%; 
  background-position: center;
  background-repeat: no-repeat;
      border: 1px solid #dddddd;
    background-color: #ffffff;
}

.owl-carousel .item img {
  border: 1px solid #dddddd; 
  height: 68px;
  object-fit: cover;
}

.owl-item.active.center  .item img {
  border-color: orange;
  border-width: 2px;
}

.owl-nav,
.owl-nav.disabled {
  display: none;
}

.owl-next,
.owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    left: -37px;
    border: 1px solid #565656 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 25px;
    font-size: 19px !important;
}


.owl-next {
  left: auto;
  right: -37px;
}

.owl-carousel {
  max-width: 100%; 
  width: 320px; 
  margin: 0 auto;
}


.rwl-modal-opener {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0,0,0,.7);
    z-index: 10;
}


.rwl-modal-opener .owl-preview-image {
  height: auto;
  width: auto; 
  max-width: 100%;
  margin: auto;
  display: block;  
  border: 0;
}

.rwl-modal-opener .owl-preview {
    height: calc(100% - 130px);
    max-height: 720px;
    width: 96%;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    position: relative;
}

.owl-preview i.icon  {
  display: none;
}

.rwl-modal-opener .owl-preview i.icon.xn {
  left: 0px; 
}
.rwl-modal-opener .owl-preview i.icon.xo {
  right: 0px;
}
.rwl-modal-opener .owl-preview i.icon.xn,
.rwl-modal-opener .owl-preview i.icon.xo {
    cursor: pointer;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: 3;
    font-size: 57px;
    color: #7d7d7d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rwl-modal-opener .owl-preview i.icon:hover {
  background-color: rgba(0,0,0,.5);
}


.rwl-modal-opener .owl-preview i.icon.zl {
  font-size: 27px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 40px; 
  width: 40px; 
  position: absolute;
  top: 0px; 
  right: 0px;
  z-index: 3;
}


.rwl-modal-opener .owl-preview > a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.rwl-modal-close {
  display: none;
}

.rwl-modal-opener .rwl-modal-close {
  display: block;
  height: 100vh; 
  width: 100vw; 
  position: fixed;
  top: 0px; 
  right: 0px; 
  left: 0px; 
  bottom: 0px; 
  margin: 0;
}

.rwl-modal-opener .owl-carousel .owl-nav button.owl-next, 
.rwl-modal-opener .owl-carousel .owl-nav button.owl-prev {
    background: rgba(0,0,0,.7);
    color: #fff;
    border-color: #9a9a9a !important;
    top: 18px;
}

.rwl-modal-opener > div {
  margin: 10px auto;
}

.slider {

}

.slider img {
  width: 90px; 
  height: 65px;
}

a.delete {
  color: #e45050  !important;
  display: inline-block;
}

.mn-10-0 {
  margin: 10px 0 !important;
}


.footer {
    background-color: #152931; 
    text-align: left;
    padding: 10px 10px 20px 15px;
}


.footer .h2 {
  margin: 10px 0; 
  color: #d8d8d8; 
  font-size: 17px;
}