/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */
#about {
    font-size: 15px;
}

.menuzord-brand img {
    max-height: 70px;
}

.menuzord-brand {
    margin-bottom: 10px;
}

.quotation::after {
    bottom: 12px;
    content: "\f10e";
    font-family: fontawesome;
    font-size: 55px;
    opacity: 0.2;
    position: absolute;
    right: 10px;
}

.menuzord-menu > li > a {
    font-size: 14px;
}

.owl-theme.dot-white-colored .owl-controls .owl-dot span{
    background: #ffffff;
}

/* ================================================== */
/*  Cookie	*/
/* ================================================== */

.cc-cookies {
    width: 100%;
}

.cc-cookies a.cc-cookie-accept{
    border: solid 1px rgba(255,255,255,.5);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.cc-cookies a.cc-cookie-accept:hover{
    color: #555;
    background: #fff;
    -o-transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}

/* ================================================== */
/*  Popup	*/
/* ================================================== */

/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 300px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    font-weight: normal;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}