/**
 * Planet Pop PACKAGED v:1.0
 * Planet Pop global CSS.
 * @author Tibi - FWDesign [https://webdesign-flash.ro/]
 * Copyright © Since 2006 All Rights Reserved.
 */



/* Font icon. */
@font-face {
    font-family: 'fwdppicon';
    src:  url('fonts/fwdppicon.eot?w9rz1w');
    src:  url('fonts/fwdppicon.eot?w9rz1w#iefix') format('embedded-opentype'),
      url('fonts/fwdppicon.ttf?w9rz1w') format('truetype'),
      url('fonts/fwdppicon.woff?w9rz1w') format('woff'),
      url('fonts/fwdppicon.svg?w9rz1w#fwdppicon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  .fwdppicon,
  [class^="fwdppicon-"]:before,
  [class*=" fwdppicon-"]:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'fwdppicon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .fwdppicon-fullscreen:before {
    content: "\e900";
  }
  .fwdppicon-gallery-fullscreen:before {
    content: "\e901";
  }
  .fwdppicon-gallery-normalscreen:before {
    content: "\e902";
  }
  .fwdppicon-headephone:before {
    content: "\e903";
  }
  .fwdppicon-left:before {
    content: "\e904";
  }
  .fwdppicon-normalscreen:before {
    content: "\e905";
  }
  .fwdppicon-pause:before {
    content: "\e906";
  }
  .fwdppicon-play:before {
    content: "\e907";
  }
  .fwdppicon-right:before {
    content: "\e908";
  }
  .fwdppicon-settings:before {
    content: "\e909";
  }
  .fwdppicon-sound:before {
    content: "\e90a";
  }
  .fwdppicon-sound-off:before {
    content: "\e90b";
  }
  .fwdppicon-uncast:before {
    content: "\e90c";
  }
  .fwdppicon-vr:before {
    content: "\e90d";
  }
  .fwdppicon-watch-later:before {
    content: "\e90e";
  }
  .fwdppicon-zoomin:before {
    content: "\e90f";
  }
  .fwdppicon-zoomout:before {
    content: "\e910";
  }
  .fwdppicon-10:before {
    content: "\e911";
  }
  .fwdppicon-cast:before {
    content: "\e912";
  }
  .fwdppicon-CC:before {
    content: "\e913";
  }
  .fwdppicon-CC-off:before {
    content: "\e914";
  }
  .fwdppicon-close:before {
    content: "\e915";
  }
  .fwdppicon-error:before {
    content: "\e916";
  }


/* General. */
.fwdpp-error-window{
    background: #FFF !important;
}

.fwdpp-error-window-text{
    font: 400 16px Roboto, Arial !important;
    padding: 7px 21px 9px 23px !important;
    color: #000;
}

.fwdppicon-error{
    position: relative !important;
    top: 5px !important;
    left: -5px !important;
    margin: 0 1px 0 0;
    color: #F00;
}

.fwdppicon-error:before{
    font-size: 26px;
}


/* Navigation buttons, the buttons colors are set in the slider settings. */
.fwdpp-navigation-button{
    width: 40px !important;
    height: 40px !important;
}

.fwdpp-first-button .fwdppicon,
.fwdpp-second-button .fwdppicon{
    position: relative !important; 
    top: calc(50% - 8px) !important;
    left: calc(50% - 8px) !important;
}

/* Preloader overlay */
.fwd-preloader {
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.fwd-preloader__circle {
    position: relative;
    width: 96px;
    height: 96px;
}

.fwd-preloader__svg {
    width: 96px;
    height: 96px;
    transform: rotate(-90deg); /* start at top */
    display: block;
}

.fwd-preloader__track {
    fill: none;
    stroke: #333;
    stroke-width: 1;
}

.fwd-preloader__progress {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
    stroke-linecap: round;
    /* Hide white arc at 0% before JS initializes; r=56 => C≈351.86 */
    stroke-dasharray: 352;
    stroke-dashoffset: 352;
}

.fwd-preloader__percent {
    position: absolute;
    inset: 0;
    top: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.fwd-preloader--hide {
    opacity: 0;
    pointer-events: none;
}

.fwd-preloader__center {
    position: relative;
    width: 220px;
    height: 220px;
}

.fwd-preloader__sun {
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffdf7e 0%, #ff9f1a 60%, #b75a00 100%);
    box-shadow: 0 0 24px 12px rgba(255, 184, 61, 0.45), 0 0 60px 20px rgba(255, 164, 0, 0.25) inset;
    animation: fwd-sun-pulse 2.2s ease-in-out infinite;
}

@keyframes fwd-sun-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.06); filter: brightness(1.08); }
}

.fwd-preloader__orbit {
    position: absolute;
    top: 50%; left: 50%;
    width: 180px; height: 180px;
    margin: -90px 0 0 -90px;
    border-radius: 50%;
    border: 2px solid #ffffff; /* brighter white ring */
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.35), 0 0 14px 6px rgba(255,255,255,0.18) inset;
    animation: fwd-orbit-rot 6.5s linear infinite;
}

@keyframes fwd-orbit-rot {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/** 
 * --------------------------------------------------------------------------------
 *	GUI
 * --------------------------------------------------------------------------------
 */
.dg.main.a{
    z-index: 9999;
    margin:0;
}



.dg .c{
    width: 50% !important;
}

.dg .property-name{
    width: 50% !important;
}

.dg.main.a .carousel{
    width: 71%;
    margin-left:0;
}

.dg.main.a .has-carousel input[type=text]{
    width: 24% !important;
    padding: 2px !important;
}

.dg.main.a .cr.color input[type=text]{
    padding: 2px 0;
}

.dg .close-button{
    width: 100% !important;
}

.dg > ul{
    height: auto !important;
}

/* Stats. */
.fwdsc-imafe-manager > div{
    position: absolute !important;
}

@media screen and (max-width: 1200px){
	.dg.main{
		display: none !important
	}
}