
body{
	--PINK:#eb0d8c;
	--BLUE: #2bace2;
	--DARKBLUE: #2e3192;
}
.carousel {
    position: relative;
    
}

.main-timeline {
    position: relative
}



.main-timeline .timeline {
    margin-bottom: 40px;
    position: relative;
	max-width:500px;
}

.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both
}

.main-timeline .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    /*margin: auto;
	top: 90px;*/
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0
}





.main-timeline .date-content {
    width: 90%;
    /*float: right;*/
    margin-top: 22px;
    position: relative
}

/*.main-timeline .date-content:before {
    content: "";
    width: 36.5%;
    height: 2px;
    background: #c6c6c6;
    margin: auto 0;
    position: absolute;
    top: 30px;
    left: 10px;
    bottom: 0
}*/

.main-timeline .date-outer {
	width: 100%;
    height: fit-content;
    font-size: 16px;
    text-align: center;
    margin: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 8%;
}

/*.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
    content: "";
    width: 80%;
    height: 200px;
    margin: auto;
    border-radius: 25%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.33s ease-out 0s;
	cursor: pointer;
	margin-left: 20%;
}*/
.main-timeline .day.date-outer:before {
    background: #fff;
    border: 2px solid var(--PINK);
    left: -6px
}
.main-timeline .night.date-outer:before {
    background: #fff;
    border: 2px solid var(--DARKBLUE);
    left: -6px
}

.main-timeline .date-outer:after {
    border: 2px solid #c6c6c6;
    left: 6px
}


.main-timeline .date {
    width: 100%;
    margin: auto;
    position: relative;
    /*top: 30%;
    left: 20%;*/
}

.main-timeline .month {
    font-size: 18px;
    font-weight: 700
}

.main-timeline .year {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #232323;
    line-height: 36px
}

.main-timeline .timeline-content {
    width: 85%;
    padding: 20px;
	margin-left: 40px;
    /*float: right*/
	
}

.main-timeline .title {
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 15px 0
}

.main-timeline .description {
    margin-bottom: 0
}

@media only screen and (max-width: 991px) {
    .main-timeline .date-content {
        margin-top: 35px
    }
    .main-timeline .date-content:before {
        width: 22.5%
    }
    .main-timeline .timeline-content {
        margin: 10px 40px 10px 30px
    }
    .main-timeline .title {
        font-size: 17px
    }
}

@media only screen and (max-width: 767px) {
    .main-timeline:before {
        margin: 0;
        left: 7px
    }
    .main-timeline .timeline {
        margin-bottom: 20px
    }
    .main-timeline .timeline:last-child {
        margin-bottom: 0
    }
    .main-timeline .icon {
       /* margin: auto 0;*/
		top:0;
    }
    .main-timeline .date-content {
        width: 95%;
        float: right;
        margin-top: 0
    }
    .main-timeline .date-content:before {
        display: none
    }
    .main-timeline .date-outer {
        /*width: 110px;
        height: 110px*/
    }
    .main-timeline .date-outer:before,
    .main-timeline .date-outer:after {
        /*width: 110px;
        height: 110px*/
    }
    .main-timeline .date {
        /*top: 30%*/
    }
    .main-timeline .year {
        font-size: 24px
    }
    .main-timeline .timeline-content{
        width: 95%;
        
        padding: 10px 0
    }
    .main-timeline .title {
        margin-bottom: 10px
    }
}
.animate-bottom {
  position: relative;
  animation: animatebottom 0.6s;
}
.modal{
	font-size:200%;
	line-height: normal;
}
.modal-title{
	font-size:200%;
	line-height: normal;
}
.modal-dialog{
	width:80%;
	max-height: 200%;
	min-height: 100%;
	overflow:scroll;
	height:auto;
}
.modal-content{
	width:90%;
	min-height: 100%;
	max-height: 200%;
	height:auto;
}
@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0;
  }

  to {
	
    bottom: 0;
    opacity: 1;
  }
}
.daytitle{
	color:var(--PINK);
}

.daybackground:before {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    background: var(--PINK);
    /*margin: 0 auto;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.main-timeline {
    counter-reset: item-number;
}

.icon.day {
    counter-increment: item-number;
}

.icon.day:before ,.icon.day:after{
   
	width: 100%;
    height: 100%;
	
    border: 3px solid var(--PINK);
	position: absolute;
    top: 20px;
    left: -10px;
	border-radius: 50%;
    transition: all 0.33s ease-out 0s;
	
    
}

.main-timeline .icon.day:before {
   
	background: var(--PINK);
	content: "";
}

.main-timeline .icon.day:after {
	
	 background: #fff;
	content: counter(item-number);
    font-weight: bold;
	font-size:220%;
	color:black;
	text-align:center;
	
}
.icon.night {
    counter-increment: item-number;
}

.icon.night:before ,.icon.night:after{
   
	width: 100%;
    height: 100%;
	
    border: 3px solid var(--DARKBLUE);
	position: absolute;
    top: 20px;
    left: -10px;
	border-radius: 50%;
    transition: all 0.33s ease-out 0s;
	
    
}

.main-timeline .icon.night:before {
    
	background: var(--DARKBLUE);
	content: "";
}

.main-timeline .icon.night:after {
	
	background: #fff;
	content: counter(item-number);
    font-weight: bold;
	font-size:220%;
	color:black;
	text-align:center;
	
}
.nighttitle{
	color:var(--DARKBLUE);
}

.nightbackground:before {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    background: var(--DARKBLUE);
    /*margin: 0 auto;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

      
.btn-daytime{
	background: var(--PINK);
	border-radius: 30px;
	color: white;
	font-weight:bold;
	font-size: 130%;
	
}
.btn-nighttime{
	background: var(--DARKBLUE);
	border-radius: 30px;
	color: white;
	font-weight:bold;
	font-size: 130%;
	
	
}
.btn-lightblue{
	background: var(--BLUE);
	border-radius: 30px;
	color: white;
	font-weight:bold;
	font-size: 130%;
}
.btn-daytime:hover, .btn-nighttime:hover,.btn-lightblue:hover{
	color:white;
	
}
.lang{
	border: 2px solid var(--PINK);
    border-radius: 50%;
    padding: 2%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.dayborder{
	border:2px solid var(--PINK);
}
.nightborder{
	border:2px solid var(--DARKBLUE);
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
	background: var(--PINK);
	position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
	display:flex;
	align-items:center;
	justify-content:center;
}
.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}
#hk1map:hover{
    color: #424242; 
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  opacity: 1;
  transform: scale(1.15);
  -ms-transform: scale(1.15); /* IE 9 */
  -webkit-transform: scale(1.15); /* Safari and Chrome */

}
a:hover, a:focus{
	color: currentColor;
    text-decoration: none;
}

.navbar-default{
	background:white;
}

.map:before{
	content: "";
    background-image: url(/minisite/hk1/images/hands.png);
    background-size: contain;
    position: absolute;
    top: 25%;
    left: 40%;
    width: 50%;
    z-index: 99;
    height: 20%;
    background-repeat: no-repeat;
	-webkit-animation: blink 1s infinite;  /* Safari 4+ */
	-moz-animation: blink 1s infinite;  /* Fx 5+ */
	-o-animation: blink 1s infinite;  /* Opera 12+ */
	animation: blink 1s infinite;  /* IE 10+, Fx 29+ */
}
@media(min-width:1200px){
	.map:before{
		
		left: 20%;
	   
	}
	
}
@-webkit-keyframes blink {
  
  0% {
	opacity:0;
  }
  100% {
    opacity:1;
  }
}