@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial, calibri;
	text-decoration: none;
	list-style: none;
}

html, body{
	display: table;
	height: 100%;
	width: 100%;
}

body{
	background: #fafafa;
	width: 100%;
}
body.noScroll{
    overflow: hidden;
}

main{
	height: 100%;
}

#footer{
	display: table-row;
	height: 1px;
}

main, footer{
	width: 100%;
	margin: 0 auto;
}
@media (min-width: 576px){
    main, footer{
        max-width: 540px;
    }
}
@media (min-width: 768px){
	main, footer{
		 max-width: 740px;
	}
}
@media (min-width: 992px){
	main, footer{
		max-width: 980px;
	}
}
@media (min-width: 1200px){
	main, footer{
		max-width: 1180px;
	}
}


#banner{
    width: 100%;
    height: 90px;
    overflow: hidden;
    margin: 10px 0;
}
#banner img{
    width: 100%;
    height: 100%;
}


section{
	margin: 10px 0;
}
section:after{
	content: ' ';
	clear: both;
	display: table;
}
section > #check-aside{
	display: none;
}
section > label{
	user-select: none;
	display: none;
	height: 30px;
	line-height: 30px;
	width: 30px;
	background: #d8933f;
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 3px;
    transition: all 0.3s ease;
}
@media(max-width: 768px){
    section > label{
        border-radius: 0 3px 3px 0;
    }
}
section > label i{
	color: #fff;
	font-size: 20px;
	line-height: 1em;
}
section aside{
	user-select: none;
	float: left;
	width: 230px;
	background: #fff;
	border: 1px solid #e3e3e3;
}
section article{
	float: right;
	width: calc(100% - 230px);
}
@media(max-width: 992px){
	section{
		position: relative;
	}
	section > label{
		display: block;
	}
	section > #check-aside:checked + label{
        z-index: 999;
		left: 230px;
	}
	section > label .fa-times{
		display: none;
	}
	section > #check-aside:checked + label .fa-times{
		display: inline-block;
	}
	section > #check-aside:checked + label .fa-arrow-right{
		display: none;
	}

	section aside{
		float: none;
		position: absolute;
		left: -230px;
		top: 0;
        z-index: 999;
		opacity: 0;
		visibility: hidden;
        transition: all 0.3s ease;
	}
	section > #check-aside:checked ~ aside{
		opacity: 1;
		visibility: visible;
		left: 0;
	}
	section article{
		width: calc(100% - 50px);
	}
}

/*
page_title article > h2
*/
article > h2{
    color: #241e1d;
    font-size: 24px;
    padding: 0 10px;
}


/*
FOOTER
*/
footer{
    width: 100%;
	background: #f7b74c;
	border-radius: 6px 6px 0 0;
    padding-top: 25px;
}
footer a:hover{
    text-decoration: none;
    color: #241e1d;
}
footer .boxs{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
footer .boxs > div{
    width: calc(33%);
    /* background-color: #fff; */
}
footer .location{
    display: flex;
    flex-direction: column;
}
footer .location > div{
    display: flex;
    margin: 2px 0;
}
/* footer .location .icon{
    background: rgb(155, 119, 0);
    text-align: center;
    border-radius: 50%;
    padding: 2px;
} */
footer .icon .fa{
    width: 35px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    color: #d8933f;
    font-size: 16px;
    background-color: rgb(226, 226, 226);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #d8933f;
}
footer .icon .fa:hover{
    color: rgb(226, 226, 226);
    background: #d8933f;
    transition: all 0.2s ease;
}
footer .icon + div{
    line-height: 35px;
    margin-left: 7px;
}
footer .phone .numb{
    font-size: 15px;
}
footer .mail a{
    color: #222;
}
footer .mail a:hover{
    color: rgb(155, 119, 0);
    transition: 0.2;
}
footer .fa-phone{
    transform: rotateZ(180deg) rotateY(180deg);
}
footer .about{
    padding: 0 15px;
}
footer .about h3{
    text-align: center;
    margin-bottom: 20px;
    color: #352d2b;
}
footer .about h3 img{
    width: 100%;
    height: auto;
    max-width: 400px;
}
footer .about p{
    text-align: justify;
}
footer .links{
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer .links div{
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    display: flex;
    justify-content: space-around;
}
footer .links .services a{
    color: #222;
}
footer .links .socials{
    border: 0;
}
footer .links .socials a{
    color: rgb(97, 59, 2);
    padding: 3px 10px;
    background:rgba(0, 0, 0, 0.075);
    border-radius: 7px;
    border: 1px solid rgb(97, 59, 2);
}
footer .bottom{
    display: flex;
    justify-content: center;
    background: #d8933f;
    padding: 15px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    cursor: default;
    margin-top: 25px;
}
footer .bottom p{
    color: #222;
}
@media(max-width: 992px){
    footer .boxs{
        flex-direction: column;
    }
    footer .boxs > div{
        width: 100%;
    }
    footer .boxs .about{
        order: 0;
        text-align: center;
    }
    footer .boxs .location{
        order: 1;
    }
    footer .boxs .links{
        order: 2;
    }
}



/*
ASIDE
*/
/* section aside{
	padding: 5px 7px;
	border: 1px solid #d8933f;
	border-radius: 6px;
    background: #fff;
}
aside > div{
    margin-bottom: 15px;
}
aside h3{
	font-size: 18px;
	color: #352d2b;
    font-weight: 300;
}
aside a{
    text-decoration: none;
}
aside .add{
    display: flex;
    flex-direction: column;
}
aside .add a{
    display: block;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
}
aside .add .fa{
    float: none;
}
aside .add [modal-name="add-announcement"],
aside .add .aside-link-to-dashboard{
    color: #fff;
    background: #d8933f;
    margin-bottom: 5px;
}
aside ul li{
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	margin: 2px 0;
	background: #d8933f;
	border-radius: 3px;
	position: relative;
}
aside ul a:hover{
    color: #fff;
    text-decoration: none;
}
aside ul li:hover{
	background: #c5812d;
	transition: background 0.2s ease;

}
aside ul li.no-radius-bl:hover{
    border-radius: 3px 3px 0 0;
}
aside ul li a{
    font-size: 14px;
	display: block;
	color: #fff;
}
aside a .fa{
	float: right;
	line-height: 30px;
}
aside > ul > li:hover{
	border-radius: 3px 3px 0 0 ;
}
aside ul ul{
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 1000;
	width: 100%;
	background: #c5812d;
	padding: 5px;
	border-radius: 0 0 3px 3px;
	opacity: 0;
	visibility: hidden;
}
aside ul li:hover ul{
	top: 30px;
	opacity: 1;
	visibility: visible;
	transition: all 0.2s ease-in-out;
}
aside ul li .fa-caret-down{
    transition: transform 0.2s ease-in-out;
}
aside ul li:hover .fa-caret-down{
	transform: rotateZ(-180deg);
}
aside ul ul li{
	background: #c5812d;
}
aside ul ul li:hover a{
    color: #fff;
	padding-left: 10px;
	transition: padding-left 0.2s ease;
}
aside .filter-form select,
aside .filter-form input,
aside .filter-form button {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #d8933f;
    background: #fff;
    padding: 3px;
    margin: 2px 0;
    color: #241e1d;
}
aside .filter-form button{
    background:#d8933f;
    color: #f5f5f5;
    border-color: #d8933f;
    cursor: pointer;
}
aside .filter-form button:hover{
    background-color: #c5812d;
    color: #fff;
    transition: all 0.2s ease-in-out;
}
aside .filter-form #tooltip{
    background:#e92929;
    font-size: 16px;
    color: #fff;
    padding: 3px 5px;
    border-radius: 3px;
    display: none;
}
aside .download_apk{
    margin-top: 40px;
    padding: 0 10px;
    text-align: center;
}
aside .download_apk p{
    font-size: 13px;
    text-align: center;
}
aside .download_apk a{
    font-size: 13px;
    color: #d8933f;
    text-decoration: none;
}
aside .download_apk a i{
    float: none;
}
@media(max-width: 992px){
	section aside{
		border-radius: 0 0 6px 0;
	}
    aside .aside-btn-auth{
        flex-direction: column;
    }
} */
section aside{
	padding: 0;
    border: none;
    background: #fff;
    padding: 3px;
}
aside > div{
    width: 100%;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #d8933f;
    border-radius: 5px;
    overflow: hidden;
}
aside > div h3{
    margin: 0;
    padding: 7px 5px;
    font-weight: 500;
    font-size: 18px;
    color: #352d2b;
    letter-spacing: 1px;
    background: #d8933f;
}
aside > div h3 i{
    font-size: 0.9em;
    margin-right: 7px;
}
aside a{
    font-size: 14px;
    color: #352d2b;
    text-decoration: none;
    transition: all 0.3s ease;
}
aside a:hover{
    color: #241e1d;
    text-decoration: none;
}
aside .add{
    padding: 10px 5px;
}
aside .add a{
    display: block;
}
aside .add a:hover{
    color: #d8933f;
}
aside .filter form{
    margin: 5px 0;
    padding: 0 5px;
}
aside .filter #tooltip{
    background:#e92929;
    font-size: 16px;
    color: #fff;
    margin-bottom: 3px;
    padding: 3px 5px;
    border-radius: 3px;
    display: none;
}
aside .filter input,
aside .filter select{
    display: block;
    width: 100%;
    margin-bottom: 3px;
    font-size: 14px;
    padding: 3px 5px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}
aside .filter button{
    display: block;
    width: 100%;
    padding: 3px;
    color: #352d2b;
    background: #d8933f;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}
aside .filter button:hover{
    background: #c5812d;
}
aside .categories ul,
aside .provinces ul{
    margin: 0;
    padding: 0;
}
aside .categories li,
aside .provinces li{
    padding: 2px 5px;
    box-shadow: 0 1px 1px rgba(216, 147, 63, 0.3);
    transition: all 0.3s ease-in-out;
}
aside .categories li:hover,
aside .provinces li:hover{
    background: rgba(247, 183, 76, 0.2);
}
aside .categories li a,
aside .provinces li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}
aside .categories li:hover > a,
aside .provinces li:hover > a{
    color: #d8933f;
}
aside .categories li a i,
aside .provinces li a i{
    font-size: 11px;
    color: rgba(216, 147, 63, 0.7);
    transition: all 0.3s ease-in-out;
}
aside .categories li:hover > a i,
aside .provinces li:hover a i{
    font-size: 17px;
}
aside .categories li a .fa-angle-down{
    transition: none;
}
aside .categories li:hover a .fa-angle-down{
    transform: rotateX(180deg);
}
aside .categories ul ul{
    display: none;
}
aside .categories ul li:hover > ul{
    display: block;
}
aside .categories ul ul li{
    border-top: 1px solid rgba(216, 147, 63, 0.15);
}
aside .download_apk{
    padding: 7px 5px;
    text-align: center;
}
aside .download_apk p{
    margin: 0;
    color: #777;
    line-height: 1em;
}
aside .download_apk a{
    color: #d8933f;
    line-height: 1em;
    font-size: 13px;
}
aside .download_apk a:hover{
    text-decoration: underline;
    color: #b1752c;
}


nav{
    position: relative;
    background: #352d2b;
    height: 80px;
    line-height: 80px;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    transition: all 0.3s ease-in-out;
    border-radius: 0 0 6px 6px;
}
nav.fixed{
    position: fixed;
    top: 0;
    z-index: 99999;
}
nav [type="checkbox"]{
    display: none;
}
nav label[for="check-navbar"]{
    color: #d8933f;
    font-size: 22px;
    display: none;
    transition: all 0.3s ease-in-out;
}
nav label .fa{
    cursor: pointer;
}
nav .logo{
    text-decoration: none;
    color: #d8933f;
    display: block;
    height: 80px;
    line-height: 80px;
    font-family: Roboto, Arial, Calibri, Sans-serif;
    font-weight: 600;
    font-size: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
nav .logo img{
    height: 100%;
    vertical-align: middle;
}
nav .menu{
    display: inline-flex;
}
nav .menu li{
    list-style: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}
nav .menu > li{
    margin: 0 5px;
}
nav .menu > li::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%) scaleX(0);
    width: 15px;
    height: 3px;
    background: #f7b74c;
    border-radius: 30px;
    transition: all 0.3s linear;
}
nav .menu > li:hover:before{
    transform: translateX(-50%) scaleX(1);
}
nav .menu li a{
    text-decoration: none;
    font-family: Roboto, Arial, Calibri, Sans-serif;
    color: #d8933f;
    font-weight: 500;
    font-size: 18px;
    padding: 0 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
nav .menu li:hover > a{
    color: #f7b74c;
}
nav .menu li a label{
    display: none;
}
nav .menu ul{
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 1000;
    background: #f7b74c;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    line-height: 30px;
}
nav .menu > li:hover > ul{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 80px;
    transition: all 0.4s ease-in-out;
}
nav .menu ul li{
    position: relative;
    transition: all 0.3s ease-in-out;
}
nav .menu ul li::before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) scale(0);
    background: #241e1d;
    border-radius: 50%;
    transition: all 0.3s linear;
}
nav .menu ul li:hover:before{
    transform: translate(-50%, -50%) scale(1);
}
nav .menu ul li a{
    word-break: break-word;
    font-size: 14px;
    color: #352d2b;
}
nav .menu ul li:hover > a{
    color: #241e1d;
    padding-left: 18px;
}
nav .menu ul ul{
    top: 10px;
    left: 200px;
}
nav .menu ul > li:hover > ul{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 0;
    transition: all 0.4s ease-in-out;
}
nav .nav-dropdown{
    position: relative;
    transition: all 0.3s ease-in-out;
}
nav .nav-dropdown label{
    color: #d8933f;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
}
nav .nav-dropdown label:hover,
nav .nav-dropdown [type="checkbox"]:checked ~ label{
    opacity: 1;
}
nav .nav-dropdown ul{
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 1000;
    background: #f7b74c;
    width: 175px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
nav .nav-dropdown [type="checkbox"]:checked ~ ul{
    top: 80px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

nav .nav-dropdown ul::before{
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: -1;
    width: 10px;
    height: 10px;
    background: #f7b74c;
    content: '';
    transform: rotateZ(45deg);
}
nav .nav-dropdown ul li{
    list-style: none;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
nav .nav-dropdown ul li:first-child{
    border-radius: 5px 5px 0 0;
}
nav .nav-dropdown ul li:last-child{
    border-radius: 0 0 5px 5px;
}
nav .nav-dropdown ul li a,
nav .nav-dropdown ul li button{
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #352d2b;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
}
nav .nav-dropdown ul li button:hover,
nav .nav-dropdown ul li a:hover{
    background: rgba(0, 0, 0, 0.05);
}
@media(max-width: 1100px){
    nav{
        padding: 0 30px;
    }
}
@media(max-width: 992px){
    nav{
        padding: 0 10px;
    }
    nav label[for="check-navbar"]{
        display: block;
    }
    nav .logo{
        z-index: 10001;
    }
    nav .menu{
        padding-top: 10px;
        position: absolute;
        top: 70px;
        left: -100%;
        left: 0;
        background: #352d2b;
        z-index: 1000;
        width: 100%;
        display: block;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        border-radius: 0 0 6px 6px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }
    nav #check-navbar:checked ~ .menu{
        left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
    }
    nav .menu ul{
        line-height: 40px;
    }
    nav .menu li{
        margin: 0;
        position: static;
        height: 40px;
        line-height: 40px;
        clear: both;
        transition: all 0.3s ease-in-out;
    }
    nav .menu > li::before{
        display: none;
    }
    nav .menu ul li a{
        font-size: 16px;
    }
    nav .menu > li > a{
        position: relative;
        transition: all 0.3s ease-in-out;
    }
    nav .menu ul li:hover > a,
    nav .menu > li:hover > a{
        padding-left: 25px;
    }
    nav .menu > li > a::before{
        content: '';
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%) scale(0);
        height: 6px;
        width: 6px;
        border-radius: 50%;
        transition: all 0.3s linear;
        background: #f7b74c;
    }
    nav .menu > li:hover > a::before{
        transform: translateY(-50%) scale(1);
    }
    nav .menu li a label{
        display: block;
    }
    nav .menu li a label .fa{
        border: 1px solid #d8933f;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        padding-right: 1px;
        text-align: center;
        transition: all 0.3s ease;
    }
    nav .menu li a label .fa:hover{
        background: #f7b74c;
        color: #352d2b;
    }
    nav .menu li [type="checkbox"]:checked ~ a label .fa{
        transform: rotateZ(-180deg);
        padding-right: 0;
        padding-left: 1px;
    }
    nav .menu ul{
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0 10px;
        float: left;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: #352d2b;
    }
    nav .menu li [type="checkbox"]:checked ~ ul{
        display: block;
    }
    nav .menu ul li::before{
        background: #f7b74c;
    }
    nav .menu ul li a{
        color: #d8933f;
    }
    nav .menu ul li:hover > a{
        color: #f7b74c;
    }
    nav .menu ul ul{
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    nav{
        height: 60px;
    }
    nav label[for="check-navbar"]{
        height: 60px;
        line-height: 60px;
    }
    nav .logo{
        height: 60px;
        line-height: 60px;
    }
    nav .menu{
        top: 50px;
    }
    nav .nav-dropdown{
        height: 60px;
        line-height: 60px;
    }
    nav .nav-dropdown ul{
        top: 50px;
    }
    nav .nav-dropdown [type="checkbox"]:checked ~ ul{
        top: 60px;
    }
}


/*
ANNOUNCEMENTS
*/
.announcements{
    background: #fafafa;
    padding: 10px;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.announcements.disnone{
    display: none;
}
.announcement{
    background: #fff;
    border-radius: 4px;
    display: table;
    transition: box-shadow 0.3s ease-in-out;
    border: 1px solid #0001;
}
.announcement:hover{
    box-shadow: 0 0 7px #bbb;
}
.announcement .head{
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    padding: 3px;
}
.announcement .img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.announcement .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
.announcement:hover .img img{
    transform: scale(1.07);
}
.announcement .category{
    padding: 3px 5px;
    background: rgba(255, 161, 20, 0.7);
    font-size: 12px;
    color: #fff;
    border-radius: 1px 5px 1px 5px;
    position: absolute;
    top: 8px;
    left: 8px;
    cursor: default;
    user-select: none;
    transition: background 0.2s ease-in-out;
}
.announcement:hover .category{
    background: rgba(255, 161, 20, 1);
}
.announcement .category-id{
    display: none;
}
.announcement .actions{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 7px 0;
    z-index: 200;
    display: flex;
    justify-content: space-evenly;
    background: rgba(255, 255, 255, 0.5);
}
.announcement .actions:hover{
    background: rgba(255, 255, 255, 0.75);
    transition: background 0.3s ease-in-out;
}
.announcement .body{
    margin-top: 15px;
    padding: 0 15px;
    padding-bottom: 30px;
}
.announcement .province{
    font-size: 13px;
    color: #352d2b;
    cursor: default;
}
.announcement .province .province-id{
    display: none;
}
.announcement .reference{
    font-size: 12px;
    color: #979797;
}
.announcement .body p{
    word-break: break-word;
    font-size: 12px;
    color: #353435;
}
.announcement.bold .body p{
    font-weight: 600;
}
.announcement.big .body p{
    font-size: 16px;
}
.announcement .full-content{
    display: none;
}
.announcement .foot{
    display: table-row;
    height: 1px;
    position: relative;
}
.announcement .foot > div{
    border-top: 1px solid #dfdfdf;
    display: flex;
}
.announcement div.infos{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    padding: 0 15px;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    font-weight: 600;
    border: none;
    color: #d8933f;
}
.announcement div.infos div{
    font-size: 11px;
}
.announcement .foot > div div{
    flex-direction: row;
    height: 30px;
    line-height: 30px;
}
.announcement .price{
    width: calc(70%);
    padding: 0 10px;
    font-size: 12px;
    color: #757575;
    align-items: center;
    cursor: default;
    user-select: none;
}
.announcement .mail,
.announcement .phone{
    width: 15%;
}
.announcement .mail a,
.announcement .phone a,
.announcement .phone button{
    display: block;
    text-align: center;
    align-items: center;
    font-size: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.announcement .mail{
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}
.announcement .mail a{
    color: rgb(9, 148, 250);
}
.announcement .phone a{
    color:rgb(3, 109, 188);
}
.announcement .phone a i.fa-mobile{
    font-size: 14px;
}
.announcement .edit a{
    color: rgb(9, 148, 250);
}
.announcement .remove button,
.announcement .remove .show-alert-dialog i{
    color: rgb(247, 35, 35);
    width: 100%;
}
.announcement .btn-view-img{
    position: absolute;
    /* top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); */
    bottom: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 7px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}
.announcement .btn-view-img:hover{
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
}
.announcement img:hover ~ .btn-view-img{
    opacity: 1;
    visibility: visible;
    transition: all 0.2s ease-in-out;
}
.announcement .btn-view-img .fa{
    color:rgb(9, 250, 97);
}
.announcement .btn-view-img:hover .fa{
    color:rgb(0, 221, 81);
}

.announcement .preview-annoncement{
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.25);
    line-height: 28px;
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    border-radius: 3px;
}

.announcements-pagination nav{
    margin: 10px 0;
    background: transparent;
    display: flex;
    justify-content: center;
}
.announcements-pagination .page-link{
    padding: 3px 5px;
    outline: none;
    font-size: 13px;
    color: #d8933f;
    outline: none;
}
.announcements-pagination .active .page-link,
.announcements-pagination li:hover .page-link{
    background-color: #d8933f;
    border-color: #d8933f;
    color: #fff;
    transition: all 0.2s ease;
    outline: none;
}

@media(max-width: 1199px){
    .announcements{
        display: none;
    }
    .announcements.disnone{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 992px){
    .announcements{
        display: none;
    }
    .announcements.disnone{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 768px){
    .announcements{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .announcements.disnone{
        display: none;
    }
    /*.announcement{*/
    /*    width: calc(100% / 2 - 20px);*/
    /*}*/
}
@media(max-width: 576px){
    .announcements{
        grid-template-columns: repeat(1, 1fr);
    }
    .announcement{
        width: calc(100% - 20px);
    }
}


/*
CONTACT PAGE
*/
#contact-form{
    background: #fff;
    height: 100%;
    border-radius: 5px;
    display: flex;
}
#contact-form .info,
#contact-form .form{
    padding: 40px 30px;
}
#contact-form .info{
    width: 55%;
    background: #bacdd2;
    border-radius: 5px 0 0 5px;
}
#contact-form .intro h5{
    font-size: 36px;
    font-weight: 600;
    color: #949495;
    letter-spacing: 2px;
}
#contact-form .intro p{
    font-size: 20px;
    text-align: left;
}
#contact-form .infos-content{
    margin-top: 20px;
    padding: 20px 15px;
}
#contact-form .infos-content > div{
    display: flex;
    height: 100px;
    margin: 10px 0;
}
#contact-form .infos-content .icon{
    width: 100px;
    text-align: center;
    line-height: 100px;
}
#contact-form .infos-content .icon .fa{
    font-size: 24px;
    color: #949495;
}
#contact-form .infos-content .content{
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    top: 8px;
}
#contact-form .infos-content .content p{
    font-size: 20px;
}
#contact-form .form{
    width: 45%;
    height: 100%;
    background: #549fbe;
    border-radius: 0 5px 5px 0;
    position: relative;
}
#contact-form .form::before{
    display: block;
    content: ' ';
    width: 36px;
    height: 36px;
    background: #549fbe;
    position: absolute;
    top: 40px;
    left: -18px;
    z-index: 200;
    transform: rotateZ(45deg);
}
#contact-form .form .field{
    width: 100%;
    border: 1px solid #f2f2f2;
    border-radius: 7px;
    margin: 20px 0;
    display: flex;
    overflow: hidden;
    height: 70px;
}
#contact-form .form .field label{
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
#contact-form .form .field label i{
    font-size: 26px;
    line-height: 70px;
    color: #fff;
}
#contact-form .form .field input,
#contact-form .form .field textarea{
    border: 0;
    outline: none;
    background: transparent;
    font-size: 20px;
    padding: 0;
    color: #fff;
}
#contact-form .form .field input{
    width: calc(100% - 70px);
    padding-right: 23px;
}
#contact-form .form .field textarea{
    width: 100%;
    height: 100%;
    resize: none;
    scrollbar-width: 3px;
}
#contact-form .form .field-text{
    padding: 19px 23px;
    height: 175px;
}
#contact-form .form .field-btn{
    border-radius: 50px;
    border: 0;
}
#contact-form .form .field-btn button{
    padding: 19px 23px;
    border: 0px;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    display: block;
    text-align: center;
    width: 100%;
    cursor: pointer;
    border: 1px solid #f2f2f2;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
#contact-form .form .field-btn button:hover{
    background: #2f85aa;
    border-color: #2f85aa;
}
@media(max-width: 992px){
    #contact-form .infos-content{
        padding: 0;
    }
    #contact-form .form .field-btn button{
        font-size: 18px;
    }
}
@media(max-width: 768px){
    #contact-form{
        flex-direction: column;
    }
    #contact-form .info,
    #contact-form .form{
        width: 100%;
    }
    #contact-form .infos-content > div{
        height: 45px;
    }
    #contact-form .infos-content .icon{
        height: 45px;
        line-height: 50px;
    }
    #contact-form .infos-content .content{
        height: 100%;
        position: relative;
        top: 8px;
    }
    #contact-form .form::before{
        display: none;
    }
}


/* ALERT DIALOG */
main{
    transition: filter 0.2s ease-in-out;
}
#footer.blur,
main.blur{
    filter: blur(20px);
    pointer-events: none;
    user-select: none;
}
.alert-dialog{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    max-width: 450px;
    width: 100%;
    padding: 20px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.alert-dialog.active{
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.alert-dialog .close-alert-dialog{
    position: absolute;
    top: 0;
    right: 0;
}
.alert-dialog .close-alert-dialog i{
    padding: 10px;
    font-size: 18px;
    color: #352d2b;
    cursor: pointer;
}
.alert-dialog .alert-dialog-content h3{
    text-align: center;
    color: #352d2b;
}
.alert-dialog .alert-dialog-content .warning{
    background: #ff921c;
    display: flex;
    padding: 5px 10px;
    border-radius: 3px;
    border-left: 5px solid #ff4100;
    align-items: center;
    margin-bottom: 20px;
}
.alert-dialog.active .alert-dialog-content .warning{
    animation: clign 0.5s ease-in-out 0.3s;
}
@keyframes clign{
    0%{
        transform: rotateZ(0deg);
    }
    10%{
        transform: rotateZ(3deg);
    }
    20%{
        transform: rotateZ(-3deg);
    }
    30%{
        transform: rotateZ(3deg);
    }
    40%{
        transform: rotateZ(-3deg);
    }
}
.alert-dialog .alert-dialog-content .warning i{
    font-size: 40px;
    color: #ff4100;
    width: 70px;
    margin-right: 10px;
    display: block;
    height: 100%;
}
.alert-dialog .alert-dialog-content .warning p{
    height: 100%;
    display: block;
}
.alert-dialog .alert-dialog-content .state{
    background: #e3e3e3;
    display: none;
    border-radius: 5px;
    height: 50px;
    align-items: center;
    padding: 0 10px;
}
.alert-dialog .alert-dialog-content .state.show{
    display: flex;
}
.alert-dialog .alert-dialog-content .state.success{
    background: rgb(18, 179, 77);
}
.alert-dialog .alert-dialog-content .state.fail{
    background: #e92929;
}
.alert-dialog .alert-dialog-content .state i{
    font-size: 26px;
    color: #232323;
}
.alert-dialog .alert-dialog-content .state.success i{
    color: #fff;
}
.alert-dialog .alert-dialog-content .state span{
    display: inline-block;
    margin-left: 15px;
    color: #232323;
}
.alert-dialog .alert-dialog-content .state.success span{
    color: #fff;
}
.alert-dialog .alert-dialog-content form label{
    display: block;
    font-size: 16px;
    color: #352d2b;
    margin-top: 10px;
}
.alert-dialog .alert-dialog-content form textarea,
.alert-dialog .alert-dialog-content form select{
    display: block;
    width: 100%;
    outline: none;
    margin-top: -8px;
    padding: 5px 3px;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 5px;
    background: none;
}
.alert-dialog .alert-dialog-content form input[type="file"]{
    margin-top: -8px;
}
.alert-dialog .alert-dialog-content form .btn{
    margin-top: 15px;
    background: #f7b74c;
    transition: all 0.3s ease-in-out;
}
.alert-dialog .alert-dialog-content form .btn:hover{
    background: #d8933f;
}

/* for alert dialog preview announcement */

.alert-dialog.preview-announcement.fullscreen{
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    transform: none;
    transition: all 0s;
}
.alert-dialog.preview-announcement .image{
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 25px;
}
.alert-dialog.preview-announcement .image{
    cursor: zoom-in;
}
.alert-dialog.preview-announcement.fullscreen .image{
    width: 100vw;
    height: 100vh;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    cursor: zoom-out;
}
.alert-dialog.preview-announcement .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.alert-dialog.preview-announcement .image.fullscreen img{
    object-fit: contain;
}
.alert-dialog.preview-announcement .details{
    margin-top: 10px;
    padding: 5px;
    border-left: 3px solid #757575;
}
.alert-dialog.preview-announcement .details > div{
    display: grid;
    grid-template-columns: 100px calc(100% - 100px);
    margin: 7px 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.alert-dialog.preview-announcement .details .label{
    display: block;
    margin-right: 5px;
    font-size: 14px;
    color: #757575;
    /*width: 100px;*/
}
.alert-dialog.preview-announcement .details .label + span{
    display: block;
}
.alert-dialog.preview-announcement .details .user.hide{
    display: none;
}
.alert-dialog.delete-announcement .warning{
    margin-top: 20px;
}
.alert-dialog.delete-announcement .warning i{
    font-size: 25px;
    width: 27px;
}
.alert-dialog.delete-announcement .warning p{
    margin-top: 12px;
}
.alert-dialog.delete-announcement .title{
    margin: 20px 0;
    font-size: 20px;
    color: #565656;
    text-align: center;
}
.alert-dialog.delete-announcement .btn-grp{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.alert-dialog.delete-announcement .btn-grp button{
    border: 0;
    background:rgb(9, 148, 250);
    padding: 3px 15px;
    border-radius: 5px;
    width: 150px;
    color: #fff;
    cursor: pointer;
}
.alert-dialog.delete-announcement .btn-grp button:hover{
    background: rgb(3, 109, 188);
    transition: background 0.2s ease-in-out;
}
.alert-dialog.delete-announcement .btn-grp .yes-option{
    background: rgb(247, 35, 35);
}
.alert-dialog.delete-announcement .btn-grp .yes-option:hover{
    background: rgb(201, 40, 40);
    transition: all 0.2s ease-in-out;
}


/* pub-iframe */
.pub-iframe{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}
.pub-iframe iframe{
    display: block;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border: none;
}
@media(max-width: 576px){
    .pub-iframe iframe{
        height: 850px;
    }
}


/* alert popup */
.alert-popup{
    position: fixed;
    top: 50px;
    right: -100%;
    z-index: 9999999;
    display: flex;
    background: #f7b74c;
    user-select: none;
    height: 60px;
    width: 350px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #c5812d;
    border-left: 5px solid #c5812d;
    transition: all 0.3s ease-in-out;
}
.alert-popup.active{
    right: 0;
    animation: popup_style 0.3s ease 0.3s;
}
@keyframes popup_style{
    0%{
        transform: translateX(-10%);
    }
    40%{
        transform: translateX(10%);
    }
    80%{
        transform: translateX(-10%);
    }
}
.alert-popup.success{
    background: rgb(0, 221, 81);
    border-color: rgb(18, 179, 77);
}
.alert-popup.fail{
    background: #ff4100;
    border-color: #cc3807;
}
.alert-popup .icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 60px;
    color: #352d2b;
    background: #d8933f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
}
.alert-popup.success .icon{
    color: #fff;
    background: rgb(8, 194, 76);
}
.alert-popup.fail .icon{
    color: #000;
    background: #e92929;
}
.alert-popup .message{
    position: absolute;
    top: 0;
    left: 50px;
    height: 60px;
    width: calc(350px - 50px - 20px);
    line-height: 60px;
    color: #352d2b;
    padding: 0 5px;
}
.alert-popup.success .message{
    color: #fff;
}
.alert-popup.fail .message{
    color: #000;
}
.alert-popup .close{
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alert-popup .close .fa{
    cursor: pointer;
    font-size: 14px;
    color: #352d2b;
}
.alert-popup.success .close .fa{
    color: #fff;
}
.alert-popup.fail .close .fa{
    color: #000;
}
