input.liky_name{
	display: block;
    font-weight: 600;
    font-size: 16px;
    color: #044167;
    line-height: 20px;
    padding: 0.8em 1.6em 0.8em 1.1em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    box-shadow: none;
    border: 1px solid #AEAEAE;
    border-radius: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

div.result_of_find{
	margin-top: 20px;
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid #AEAEAE;
    border-radius: 5px;
    padding: 0.8em;
}

.resunt_of_found_name{
	border-bottom:1px solid #AEAEAE;
}
.resunt_of_found_name:hover{
	background: #AEAEAE;
	font-weight:400;
	cursor:pointer;
}

.write_item{
	display:flex;
}

.write_item select {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #044167;
    line-height: 20px;
    padding: 0.8em 1.6em 0.8em 1.1em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    box-shadow: none;
    border: 1px solid #AEAEAE;
    border-radius: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #F9F9F9;
    background-image: url(../img/arrow_more_filter.png), linear-gradient(to bottom, #F9F9F9 0%,#F9F9F9 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.write_item button:hover{
	border: 2px solid #044167;
	color: #044167;
	background:#FFF;
	transition:0.3s;
}
.write_item button{
	display: block;
    font-weight: 600;
    font-size: 16px;
    color: #FFF;
    line-height: 20px;
    padding: 0.8em 1.6em;
    border: 2px solid #044167;
    border-radius: 10px;
    background: #044167;
	display:none;
}
.write_item input{
	max-width:100px;
	margin-right:15px;
	border: 1px solid #AEAEAE;
    border-radius: 10px;
	display:none;
	padding: 0.8em 1.6em;
}
.write_item select{
	max-width:20%;
	margin-right:15px;
} 
.write_item select:nth-child(2){
	display:none;
}
.write_item button.show,
.write_item input.show,
.write_item select:nth-child(2).show{
	display:block;
}









/*-------------------------------------*/
    
    .cf:before, .cf:after{
      content:"";
      display:table;
    }
    
    .cf:after{
      clear:both;
    }

    .cf{
      zoom:1;
    }

    /*-------------------------------------*/	
    
    .form-wrapper {
		display:flex;
        background: #444;
        background: rgba(0,0,0,.2);
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }
    
    .form-wrapper input {
        width: 100%;
        height:100%;
        padding: 10px 10px;
        float: left;    
        border: 0;
        background: #eee;
        -moz-border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px;      
    }
    
    .form-wrapper input:focus {
        outline: 0;
        background: #fff;
        -moz-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
        -webkit-box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
        box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
    }
    
    .form-wrapper input::-webkit-input-placeholder {
       color: #999;
       font-weight: normal;
       font-style: italic;
    }
    
    .form-wrapper input:-moz-placeholder {
        color: #999;
        font-weight: normal;
        font-style: italic;
    }
    
    .form-wrapper input:-ms-input-placeholder {
        color: #999;
        font-weight: normal;
        font-style: italic;
    }    
    
    .form-wrapper button {
		overflow: visible;
        position: relative;
        float: right;
        border: 0;
        padding: 0;
        cursor: pointer;
        height: 40px;
        width: 110px;
        font: bold 15px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
        color: #fff;
        text-transform: uppercase;
        background: #d83c3c;
        -moz-border-radius: 0 3px 3px 0;
        -webkit-border-radius: 0 3px 3px 0;
        border-radius: 0 3px 3px 0;      
        text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
    }   
      
    .form-wrapper button:hover{		
        background: #e54040;
    }	
      
    .form-wrapper button:active,
    .form-wrapper button:focus{   
        background: #c42f2f;    
    }
    
    .form-wrapper button:before {
        content: '';
        position: absolute;
        border-width: 8px 8px 8px 0;
        border-style: solid solid solid none;
        border-color: transparent #d83c3c transparent;
        top: 12px;
        left: -6px;
    }
    
    .form-wrapper button:hover:before{
        border-right-color: #e54040;
    }
    
    .form-wrapper button:focus:before{
        border-right-color: #c42f2f;
    }    
    
    .form-wrapper button::-moz-focus-inner {
        border: 0;
        padding: 0;
    }





























.header_with_btn{
	align-items: center;
}
.header_with_btn .btn{
	margin-left: auto;
}

.pin:before {
	content:'';
	display:block;
    right: 5%;
    top: 5%;
	background: #ff0000;
	border-radius: 100%;
	width: 20px;
	position: absolute;
	height: 20px;
	-webkit-animation: pulsing 2s infinite;
	animation: pulsing 2s infinite;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

.context-menu-open {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.54);
    background-color: white;
    border-radius: 4px;
    padding: 4px;
}
.context-menu-open ul {
    padding: 0;
    margin: 0;
}
.context-menu-open ul li {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    margin: 0;
    border-bottom: 1px solid #BFE2FF;
}
.context-menu-open ul li:last-child {
    border-bottom: 1px solid transparent;
}
.context-menu-open ul li:hover {
    background-color: #BFE2FF;
}

.btn_link{
    background: #7e8696;
    padding: 10px 15px;
	padding-left: 55px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
	    min-height: 70px;
    display: flex;
    align-items: center;
}
.btn_link img{
	position:absolute;
	left: 5px;
}
.btn_link:hover{
    background: rgb(126 134 150 / 60%);
	color: #fff;
    text-decoration: none;
}
.delete_doc_from_pasport{
	font-size: 1em;
	color: red;
	font-weight:700;
}
.delete_doc_from_pasport:hover{
	color:black;
}
.path_list{
	margin: 0;
    list-style: none;
    padding: 0px 10px 0px 20px;
	width: 100%;
	    max-height: 50vh;
    overflow-y: auto;
}
.path_list li a:not(.deleted_path){
    font-size: 20px;
    text-decoration: none;
    color: #7e8696;
    display: inline-flex;
    line-height: 1;
    align-items: center;
}
.path_list li a:not(.deleted_path) i{
    margin-right:15px;
}
.path_list li{
	margin-bottom: 5px;
    position: relative;
}
.path_list li:after{
    content: '';
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #7e8696;
    margin: 10px 0;
    display: block;
}
.setting_menu_merch{
	max-height: 60vh;
    overflow-y: auto;
}

/* your styles go here */
.rename_doc,
.rename_standart{
	position: absolute;
    top: 5px;
    left: 5px;
    background: blue;
    color: #fff;
    padding: 7px;
	cursor:pointer;
    border-radius: 50%;
}
.rename_doc:hover,
.rename_standart:hover{
	background: orange;
}

.delete_doc,
.delete_standart{
	position: absolute;
    top: 40px;
    left: 5px;
    background: red;
    color: #fff;
    padding: 7px;
	cursor:pointer;
    border-radius: 50%;
}
.delete_doc:hover,
.delete_standart:hover{
	background: orange;
}
.setting_menu_merch .card-body .rename_doc i,
.setting_menu_merch .card-body .delete_doc i,
.setting_menu_merch .card-body .rename_standart i,
.setting_menu_merch .card-body .delete_standart i{
	font-size:13px;
}

.setting_menu_merch .card-body:hover .rename_doc i,
.setting_menu_merch .card-body:hover .delete_doc i,
.setting_menu_merch .card-body:hover .rename_standart i,
.setting_menu_merch .card-body:hover .delete_standart i{
	color: #fff;
}
.prop-preview__photo-block{
	display: table-cell;
	position: relative;
    width: 570px;
    height: 570px;
    max-width: 100%;
	max-height:auto;
}
.prop-preview__photo{
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.prop-preview__photo img{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	height: 100%;
	width: auto;
	opacity: 0;
	transition: .3s;
}
.prop-preview__photo img.active{
	opacity: 1;
	transition: .3s;
}
.prop-preview__dots{
	position: absolute;
	display: block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 3;
	left: 50%;
	bottom: 16px;
	transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
}
.prop-preview__dots li{
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: rgba(255,255,255,.7);
}
.prop-preview__dots li.active{
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
	box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
}
.prop-preview__dots li:not(:last-child){
	margin-right: 8px;
}
.prop-preview__prev,
.prop-preview__next{
	position: absolute;
	top: calc(50% - 14px);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #fff;
	background-size: 8px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.prop-preview__prev{
	left: 14px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.77778 3.68784L5.33788 0.127804C5.42022 0.045398 5.53014 0 5.64734 0C5.76454 0 5.87446 0.045398 5.9568 0.127804L6.21898 0.389915C6.38958 0.560711 6.38958 0.838302 6.21898 1.00884L3.22947 3.99834L6.22229 6.99116C6.30463 7.07357 6.3501 7.18342 6.3501 7.30056C6.3501 7.41783 6.30463 7.52768 6.22229 7.61015L5.96012 7.8722C5.87771 7.9546 5.76786 8 5.65066 8C5.53345 8 5.42354 7.9546 5.3412 7.8722L1.77778 4.30891C1.69524 4.22624 1.64991 4.11587 1.65017 3.99854C1.64991 3.88075 1.69524 3.77044 1.77778 3.68784Z' fill='%23282D39'/%3E%3C/svg%3E%0A")
}
.prop-preview__next{
	right: 14px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.22222 3.68784L2.66212 0.127804C2.57978 0.045398 2.46986 0 2.35266 0C2.23546 0 2.12554 0.045398 2.0432 0.127804L1.78102 0.389915C1.61042 0.560711 1.61042 0.838302 1.78102 1.00884L4.77053 3.99834L1.77771 6.99116C1.69537 7.07357 1.6499 7.18342 1.6499 7.30056C1.6499 7.41783 1.69537 7.52768 1.77771 7.61015L2.03988 7.8722C2.12229 7.9546 2.23214 8 2.34934 8C2.46655 8 2.57646 7.9546 2.6588 7.8722L6.22222 4.30891C6.30476 4.22624 6.35009 4.11587 6.34983 3.99854C6.35009 3.88075 6.30476 3.77044 6.22222 3.68784Z' fill='%23282D39'/%3E%3C/svg%3E%0A")
}

.jvectormap-legend{
	min-width: 370px;
}
.jvectormap-legend-tick{
	width: 24%!important;
}
.search_result{
	    position: absolute;
    top: 50px;
    background: #fefefe;
    border: 1px solid #fff;
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    list-style: none;
    font-size: 18px;
    z-index: 99999999;
}
.border-table{
	    max-height: 500px;
    overflow: hidden;
    overflow-y: scroll;
}
.deleted_path{
    color: red;
    display: inline-flex;
    float: right;
    position: absolute;
    right: 0;
    top: 9px;
}
.hiden_wait{
	display:none;
}
.commentos{
	display:block;
}
table thead td{
	font-weight:700;
}

.setting_menu_merch .card-body i{
	font-size: 55px;
    display: block;
    text-align: center;
}

@media screen and (max-width: 769px) {
	.setting_menu_merch .card-body i{
		font-size: 35px;
		display: block;
		text-align: center;
	}
}

@media screen and (max-width: 450px) {
	.jvectormap-legend{
		width: 100%;
		min-width: 100%;
	}
}

.setting_menu_merch .card-body:hover i{
	color:#4680ff;
	transition: 0.5;
}
.setting_menu_merch .card-body a{
	color: #adb5bd;
	display:block;	
	font-weight:700;
}

.setting_menu_merch .card-body a:hover{
	text-decoration:none;
	color:#4680ff;
	transition: 0.5;
}

.setting_menu_merch .card-body:hover{
	box-shadow: none;
}
.setting_menu_merch .card-body:hover a{
	text-decoration:none;
	color:#4680ff;
	transition: 0.5;
}
.preloader i{
	font-size:5rem;
}

#lightgallery li{
	max-height:200px;
	overflow:hidden;
}

#edit_comment_to_vist2 textarea {
	    border-radius: 6px;
		max-height: 100px;
}

.del_pic_manager{
	position: absolute;
    display: block;
    left: calc(30% - 20px);
    padding: 5px 9px;
    border-radius: 50%;
    color: #fff !important;
}


.input-group-text{
	background-color: #fff;
	cursor: pointer;
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #EEEEEE -moz-use-text-color #FFFFFF;
  border-style: solid none;
  border-width: 1px 0;
  margin: 18px 0;
}

.del_pic_manager:hover{
	opacity:0.7;
}
.map-pin {
        width: 64px;
        height: 50px;
        position: absolute;
        top: -25px;
        left: -32px;
        background-size: 32px 32px;
        background-repeat: no-repeat;
        text-align: center;
        background-position: top center;
        color: #888;
        font-weight: 500;
        font-size: 14px;
      }

      .map-pin span {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        left: 0;
      }

      .red {
        background-image: url('../img/marker/red.png');
      }

      .blue {
        background-image: url('../img/marker/blue.png');
      }

      .purple {
        background-image: url('../img/marker/purple.png');
      }

      /* Setup basic CSS for Label */
      .jqvmap-pin {
        font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
        cursor: default;
      }

      /* Reposition Labels that are not quite right ( labels are centered in shape, and sometimes need tweaking ) */

      #jqvmap1_fl_pin {
        margin-left: 5%;
      }


.dropzone22 {
    min-height: 150px;
    border: 2px dashed #dee2e6;
    background: white;
    padding: 20px 20px
}

.dropzone22.dz-clickable {
    cursor: pointer
}

.dropzone22.dz-clickable * {
    cursor: default
}

.dropzone22.dz-clickable .dz-message {
    cursor: pointer
}

.dropzone22.dz-clickable .dz-message * {
    cursor: pointer
}

.dropzone22.dz-started .dz-message {
    display: none
}

.dropzone22.dz-drag-hover {
    border-style: solid
}

.dropzone22.dz-drag-hover .dz-message {
    opacity: 0.5
}

.dropzone22 .dz-message {
    text-align: center;
    margin: 2em 0
}

.dropzone22 .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px
}



.dropzone22 .dz-preview:hover {
    z-index: 1000
}

.dropzone22 .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone22 .dz-preview.dz-file-preview .dz-image {
    background: #999;
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
    background: linear-gradient(to bottom, #eee, #ddd)
}

.dropzone22 .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}

.dropzone22 .dz-preview.dz-image-preview {
    background: white
}

.dropzone22 .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear
}

.dropzone22 .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none
}

.dropzone22 .dz-preview .dz-remove:hover {
    text-decoration: underline
}

.dropzone22 .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone22 .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0,0,0,0.9);
    line-height: 150%
}

.dropzone22 .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px
}

.dropzone22 .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone22 .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200,200,200,0.8);
    background-color: rgba(255,255,255,0.8)
}

.dropzone22 .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone22 .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone22 .dz-preview .dz-details .dz-filename span {
    background-color: rgba(255,255,255,0.4);
    padding: 0 0.4em;
    border-radius: 3px
}

.dropzone22 .dz-preview .dz-details .dz-size span {
    background-color: rgba(255,255,255,0.4);
    padding: 0 0.4em;
    border-radius: 3px
}

.dropzone22 .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px)
}

.dropzone22 .dz-preview .dz-image {
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone22 .dz-preview .dz-image img {
    display: block
}

.dropzone22 .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)
}

.dropzone22 .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)
}

.dropzone22 .dz-preview .dz-success-mark,.dropzone22 .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px
}

.dropzone22 .dz-preview .dz-success-mark svg,.dropzone22 .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px
}

.dropzone22 .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.dropzone22 .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in
}

.dropzone22 .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite
}

.dropzone22 .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    overflow: hidden
}

.dropzone22 .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out
}

.dropzone22 .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone22 .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone22 .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 3px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white
}

.dropzone22 .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626
}

.shaddow_nav{
	background: #fff;
    padding: 10px 10px 0px 10px;
    border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
    -webkit-box-shadow: 0 0.125rem 0.8rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125rem 0.8rem rgba(0, 0, 0, 0.1);
}
.tab-content{
	padding: 2rem 1rem;
    background: #fff;
    margin-bottom: 32px;
    border-radius: 0rem 0rem 1rem 1rem;
    -webkit-box-shadow: 0 0.125rem 0.8rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125rem 0.8rem rgba(0, 0, 0, 0.1);
}

.nav-link.active.show, .nav-link.active{
	border-radius: 1rem 1rem 0 0;
    background: #8e8e8e;
    color: #fff;
    font-weight: 700;
}

.nav-item:hover, .nav-item:focus{
	border-radius: 1rem 1rem 0 0;
	font-weight:500;
}

.nav-tabs .nav-link{
	border-radius: 1rem 1rem 0 0;
	color:#212529;
}
input.error,
select.error{
	border-color: red;
}

label.error{display:none!important;}

img{max-width:100%; height:auto;}

/* BLOG */
.single-blog-img {
    overflow: hidden;
}

.single-blog-img a img {
    width: 100%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-blog:hover .single-blog-img a img {
    -webkit-transform: scale(1.09);
    -moz-transform: scale(1.09);
    -ms-transform: scale(1.09);
    -o-transform: scale(1.09);
    transform: scale(1.09);
}
.single-blog-img img {
    width: 100%;
}
.pic_for_content{width:100%; max-width:100%; min-width:100%;}
.blog-content-box {
	padding-right: 25px;
    padding-left: 25px;
    padding-top: 27px;
    margin-left: 34px;
    background: #fff;
    padding-bottom: 30px;
}
.blog-post-date {
    display: table;
    float: left;
    margin-right: 30px;
}
.blog-post-date span:first-child {
    color: #ffca00;
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-top: -11px;
    margin-bottom: -4px;
    text-align: center;
}
.blog-post-date span:last-child {
    font-size: 14px;
    color: #212121;
    font-weight: 600;
}
.blog-content {
    display: table;
}
.blog-content h4 {
    color: #212121;
}
.blog-content h4 a {
    color: #212121;
    text-decoration: none;
    -webkit-transition: .2s;
    transition: .2s;
}
.blog-content h4 a:hover {
    color: #FFCA00;
}
.meta-post {
    margin: 10px 0 13px;
}
.meta-post span {
    color: #696969;
    font-size: 15px;
    position: relative;
    padding-right: 23px;
}
.author {
    margin-bottom: 60px;
}
.meta-post span a {
    color: #696969;
    -webkit-transition: .2s;
    transition: .2s;
}

.meta-post span:after {
    position: absolute;
    content: "-";
    right: 4px;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.meta-post span:last-child {
    padding-right: 0;
}
.exerpt {
    line-height: 28px;
    color: #696969;
    margin-bottom: 37px;
}