/* font converted using font-converter.net. thank you! */
@font-face {
    font-family: "HeartWarming";
    src: url("_fonts/HeartWarming.eot"); /* IE9 Compat Modes */
    src: url("_fonts/HeartWarming.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("_fonts/HeartWarming.otf") format("opentype"), /* Open Type Font */
    url("_fonts/HeartWarming.svg") format("svg"), /* Legacy iOS */
    url("_fonts/HeartWarming.ttf") format("truetype"), /* Safari, Android, iOS */
    url("_fonts/HeartWarmingFontbySitujuh7NTypes.woff") format("woff"), /* Modern Browsers */
    url("_fonts/HeartWarming.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WeatherIcons-Regular";
    src: url("./fonts/weathericons-regular-webfont.eot"); /* IE9 Compat Modes */
    src: url("./fonts/weathericons-regular-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("./fonts/weathericons-regular-webfont.otf") format("opentype"), /* Open Type Font */
    url("./fonts/weathericons-regular-webfont.svg") format("svg"), /* Legacy iOS */
    url("./fonts/weathericons-regular-webfont.ttf") format("truetype"), /* Safari, Android, iOS */
    url("./fonts/weathericons-regular-webfont.woff") format("woff"), /* Modern Browsers */
    url("./fonts/weathericons-regular-webfont.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

.pt25{
    padding-top: 25px;
}

.pl-25{
    padding-left: 25px;
}
.ml-25{
    margin-left: 25px;
}
.mt-25{
    margin-top: 25px !important;
}

.iframe-1{
    display: block;       /* iframes are inline by default */
    background: #000;
    border: none;         /* Reset default border */
    height: 100vh;        /* Viewport-relative units */
    width: 100vw;
    margin-top: -30px;
    margin-left: -20px;
    margin-right: -20px;
}

.fa {
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  padding: 20px;       
}

.disney-icon {
    font-size: 20px;
}


.icon1:hover {
transform: scale(1.5, 1.5);
}


.disney-icon-30 {
    font-size: 30px;
}

.disney-icon-55 {
    font-size: 55px;    
    padding-bottom: 25px;
    margin-top: -30px;
    position: absolute;
}

.disney-icon-55-smal {
    font-size: 55px;    
    padding-bottom: 25px;
    margin-top: -23px;
    position: absolute;
}


.nav-link {
    cursor: pointer;
}

.sub-info{
    color: aqua;
    font-size: 14px;
    padding-left: 30px;

}



#icon-time {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.font-timeline {
    font-family: HeartWarming;
    font-size: 18px;
    font-weight: bold;
}

.p-timeline { 
    font-size: 16px;
    color: #002fbb;
}

.linie {
    height: 2px;
    width: 80%;
    margin: 2px 0 10px 0;
    color: #000;
}



/* weather icons */

.iconTime {
    font-size: 40px;
    padding-left: 30px;
    font-weight: bold;
    color: #002fbb;
}

.emoticon {
    font-size: 80px;
    color: #002fbb;
    padding-top: 12px;
    padding-left: 30px;
}
.emoticon-klein {
    font-size: 60px;
    color: #002fbb;
    padding-left: 30px;
    margin-top: 15px;
    float: right;
}

.nav-link svg {
    margin-right: 1.25rem;
    margin-top: .12502rem;
    margin-bottom: .12502rem;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    min-width: 1em;
    display: inline-block;
    text-align: center;
    font-size: 1em;
    vertical-align: middle;
    position: relative;
    top: 0;    
}

.title {
    font-weight: bold;
}
.info {
    color:#5bc0de;
}
.video{
    float:none;
    margin:auto;
}

.video{
    float:none;
    margin:auto;
}

/*Gallery - https://www.youtube.com/watch?v=QghhoJBdw7A */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    position: relative;
    min-height: 100vh;
    background: transparent;
}
.container h1{
    font-size: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: normal;
    padding: 15px;
    color: #333;
    text-align: center;
    text-transform: capitalize;
}
.container .image-container{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.container .image-container .image{
    height: 250px;
    width: 350px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
.container .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: .2 linear;
}
.container .image-container .image:hover img{
    transform: scale(1.1);
}
.container .popup-image{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.container .popup-image span{
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 40px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}
.container .popup-image img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 85%;
    object-fit: contain !important;
}
@media (max-width:768px){
    .container .popup-image{
        width: 100%;
    }
}

.trenner{
   padding: 25px;
}