/* CSS Document */

.theme-main-menu-two #mega-menu-wrapper {
    padding-right: 0;
}
.camera_wrap img.slide-logo {
    margin: 0 auto;
	 margin-top: -20px;
}

h2.chiaro, h3.chiaro, h4.chiaro, h5.chiaro, h6.chiaro {
    color: #D9D6D3;
}
.tm10 {
	margin-top: 10px;
}
.mr15{
	margin-right:15px;	
}
.theme-main-menu-two .logo {
    left: 20px;
}

.theme-main-footer a.p-color {
    color: #daac5b;
}
.sezioni {
    padding-top: 90px;
    margin-top: -90px;
}
.client-section .opacity {
    background: rgba(255, 255, 255, 0.11);
}
.delicious-food-section, .short-banner, .map-canvas, .error-page{
    margin: 150px 0 0px 0;
}
.our-portfolio.inner-page{
    margin-top: 170px;
}
.our-portfolio.inner-page, .map-canvas{
    margin-bottom: 170px;
}

/*  TOOLTIP  */

.wrapper .icon {
    position: relative;
    /*background: #ffffff;
      border-radius: 50%;
      padding: 15px;
      margin: 10px;
      width: 50px;
      height: 50px;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    /*background: #ffffff;
      color: #ffffff;*/
    padding: 5px 8px 2px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: #F7C51E;
    color: #ffffff;
}

    .wrapper .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #F7C51E;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

.wrapper .icon:hover .tooltip {
    top: -40px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}