/*------------------------------------*\
            Common.css
\*------------------------------------*/
/*
    * General.....................General use
    * Common Module...............
    * Font Face...................
    * Animation Effect............Animation
    * space...............space for every row
    * Play button
    * Animation
    * limited-line-block
    * Magnific Dialog
    * Media Query.................RWD Setting
        * General.....................
        * Animation Effect............
*/



#main-topnavarea{ height: 50px; }
#topnavarea {
    position: sticky;
    top: 0;
    z-index: 101;
}
.border{ border: 1px solid #000; }

/*------------------------------------
            $General
------------------------------------*/
b, strong { font-style: normal; }
html, body { min-height:100%; height:auto; }
html{ font-size: 16px; }
    body {
        font-family:'Roboto', sans-serif;
        /*padding-top: calc( 48px + 0.625vw );*/
        /*padding-top: 60px;*/
        color: #4d4d4d;
    }

    /*----- Layout -----*/
    .position-relative{ position: relative; }
    .container-fluid{ padding: 0; }
    .rl-row-1440{
        max-width: 1440px; 
        margin: 0 12.1%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .rl-row-1540{
        max-width: calc( 1540px + 30px ); 
        margin: 0 8.7%;
        padding-right: 15px;
        padding-left: 15px;
    }
    /*-----display: flex-----*/
    .flex-container{
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    .direction-column{
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .align-center{
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .align-content{
        -webkit-align-content: space-between;
            -ms-flex-line-pack: justify;
                align-content: space-between;
    }
    .align-self-flex-end{
        -webkit-align-self: flex-end;
            -ms-flex-item-align: end;
                align-self: flex-end;
    }
    .justify-center{
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .justify-space-between{
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .flex-align-center{   
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .flex-align-end{
         -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
    }

    /*-----flex: 水平、垂直置中、靠右-----*/
    .flex-all-align{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-justify-content: center;
            -ms-justify-content: center;
                    -ms-flex-pack: center;
                    justify-content: center;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
            
    }


    /*----- font size for seo -----*/
	.text-lg, .text-md, .text-sm, .text-xs, p{margin: 0;}
    .text-lg{ 
        font-size: 5.25rem; 
        line-height: 1.3;
        font-weight: 500;
        padding-top: 0;
        padding-bottom: 0;
    }
    .text-md{
        font-size: calc( 28.8px + 1vw ); /*48*/
        font-weight: 300;
        line-height:1.3; 
        padding-top: 0;
        padding-bottom: calc( 16px + 1.25vw );
    }
    .text-sm{
        font-size: calc( 26.4px + 0.5vw ); /*36*/ 
        font-weight: 300; 
        line-height:1.2; 
        padding-top: 0;
        padding-bottom: calc( 16px + 1.25vw );
    }
    .text-xs{
        font-size: calc( 22.8px + 0.375vw ); /*30*/ 
        font-weight: 400;
        line-height: 1.1; 
        padding-top: calc( 18px + 0.625vw );
        padding-bottom: calc( 13px + 0.625vw );
    }
    p, li, .text-desc{
    	font-size: calc(15.6px + 0.125vw); /*18-16*/ 
    	line-height: 1.5; 
    	font-weight: 300;
    }    
   	p, ul{ /*padding-bottom: 20px;*/ }

    /*-----Link Style-----*/
    .rl-style a{color: ; text-decoration: none;}
    .rl-style a:hover{color:; }
    .rl-style a:focus,
    .rl-style a:active,
    .rl-style a:active:focus{color:; outline: none;}
        
    .rl-style a.link {color: #FFA204; text-decoration: none;}
    .rl-style a.link:hover{color: #4d4d4d; }
    .rl-style a.link:focus,
    .rl-style a.link:active,
    .rl-style a.link:active:focus{color: #4d4d4d; outline: none;}

	/*-----Background Color-----*/
    .bg-color-black{background-color: #000;}
    .bg-color-white{background-color: #fff;}
    .bg-color-gray{background-color: #d3d3d3;}
    .bg-color-darkgray{background-color: #4a4a4a;}
    .bg-color-lightgray{background-color: #f4f4f4;}


	/*----- Button style -----*/
    /* button with fill bg*/
    .rl-btn-fill{
        background-color: #7f7f7f;
        /*border: 2px solid #7f7f7f;*/
        color: #fff;
        line-height: normal;
        font-size: 1.125rem;
        border-radius: 0;
    }
    .rl-btn-fill:hover, 
    .rl-btn-fill:active, .rl-btn-fill:active:focus{
        background-color: #959595 !important;
        color: #fff !important;
        outline:none;
    }
    .rl-btn-fill:focus{
		background-color: #7f7f7f;
        color: #fff;
        outline:none;
    }
    
    .rl-btn-fill-new {
        background-color: #666;
        border: none;
        color: #fff;
        line-height: normal;
        font-size: 1.125rem;
        /*border-radius: 0;  */
    }
    .rl-btn-fill-new:hover, 
    .rl-btn-fill-new:active, .rl-btn-fill-new:active:focus{
        background-color: #999 !important;
        color: #fff !important;
        outline:none;
    }
    .rl-btn-fill-new:focus{
		background-color: #999;
        color: #fff;
        outline:none;
    }

    /* button with border*/
    .rl-btn-border{
        background-color: transparent;
        border: 2px solid #82BE10;
        color: #42D365;
        font-size: 1rem;
        border-radius: 0;
    }
    .rl-btn-border:hover,
    .rl-btn-border:active, .rl-btn-border:active:focus{
        background-color: #82BE10;
        border: 2px solid #82BE10;
        color: white;
        outline:none;
    }
    .rl-btn-border:focus{
        background-color: transparent;
        border: 2px solid #82BE10;
        color: #82BE10;
        outline:none;
    }
    
    .rl-btn-border-new{
        background-color: white;
        border: 2px solid #4B4B4B;
        color: #4B4B4B;
        font-size: 1rem;
        border-radius: 0;
    }
    .rl-btn-border-new:hover,
    .rl-btn-border-new:active, .rl-btn-border-new:active:focus{
        background-color: #4B4B4B;
        color: white;
        outline:none;
    }
    .rl-btn-border-new:focus{
        background-color: #4B4B4B;
        color: white;
        outline:none;
    }

	/*slick style*/
	.slick-prev:before, .slick-next:before{ color: #333333; }

    .cursor{
        cursor: pointer;
    }

    .rl-hidden-lg{
        display: none;
    }

/*--- magnificPopup overwrite ---*/
.mfp-iframe-holder .mfp-content {
    max-width: 80%;
}



/*------------------------------------
        	$Common Module
------------------------------------*/
/*--- pagination-wrap ---*/
    .pagination-wrap{
        display: flex;
        margin-bottom: calc(0.9375vw + 22px); /*40-25*/
        align-items: center;
        justify-content: space-between;
        line-height: 1.5;
    }
    .pagination {
        display: inline-block;
        margin: 0;
    }
    .pagination a {
        color: #555;
        float: left;
        font-size: calc(0.125vw + 13.6px); /*16px-14px*/
        padding: 0.5px 6.5px;
        margin: 0 5px;
        border: none;
    }
    .pagination a,
    .pagination a:hover,
    .pagination a:focus,
    .pagination a:active,
    .pagination a:focus:active{
        text-decoration: none;
    }
    .pagination a:first-child,
    .pagination a:last-child{ border: 1px solid #ddd; }
        .pagination a:first-child:hover,
        .pagination a:last-child:hover{ border: 1px solid #FFA105; color: #ffa105}
        .pagination a.disabled,
        .pagination a.disabled:hover
        { border: 1px solid #dbdbdb; color: #dbdbdb; cursor: default;}
        .pagination a.blah,
        .pagination a.blah:hover
        { cursor: default; outline: none;}
    .pagination a.active{
        background-color: #ff9f00;
        color: white;
    }
    .pagination a:hover:not(.active):not(:first-child):not(:last-child):not(.blah) {
        background-color: #ffa105;
        color: #fff;
    }
@media screen and ( max-width: 767px ){
    .pagination-wrap{
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .pagination{
        display: -webkit-flex; 
        display: -ms-flexbox; 
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%; 
    }
    .pagination.top{ 
        border-top: 2px solid #dbdbdb;
        margin-top: 20px;
        padding-top: 30px; 
    }
}

    
/*--- slick arrow ---*/
.banner-wrapper .arrow{
		border: none;
		background-color: rgba(0,0,0,0.7);
		-webkit-transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
		opacity: 0;
		outline: none;
		height: 50px;
	    -webkit-transform: scale(0.8);
	    	-ms-transform: scale(0.8);
	    		transform: scale(0.8);
	}
	.banner-wrapper .arrow i.fa{ color: #fff; font-size: 2rem; }
    .banner-wrapper .arrow .fa-angle-right{
        margin-left: 4px;
        line-height: 1;
        display: block;
        margin-top: -1px;
    }
    .banner-wrapper .arrow .fa-angle-left{
        margin-left: -3px;
        line-height: 1;
        display: block;
        margin-top: -1px;
    }
	.slide-wrapper:hover .arrow,
    .banner-wrapper:hover .arrow{ 
		opacity: 1;
	    -webkit-transform: scale(1);
	    	-ms-transform: scale(1);
	    		transform: scale(1); 
	}
	.banner-wrapper .prev{
		position: absolute;
		left: 15px;
		top: 50%;
		z-index: 10;
	}
	.banner-wrapper .next{
		position: absolute;
		right: 15px;
		top: 50%;
		z-index: 10;
	}
/*--- banner arrow ---*/
.banner-wrapper .arrow{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: rgba(98,98,98,0.8);
    height: calc(0.8750000000000001vw + 27.2px); /*44-30*/
    width: calc(0.8750000000000001vw + 27.2px);
    text-align: center;
}
.banner-wrapper .arrow i.fa{ color: #fff; font-size: calc(17.6px + 0.75vw); /*32-20*/ }
    .banner-wrapper .prev{
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        z-index: 10;
        margin: auto;
	}
	.banner-wrapper .next{
		position: absolute;
		right: 15px;
		top: 0;
        bottom: 0;
		z-index: 10;
        margin: auto;
	}


    .rl-hidden {
        display: none;
    }

    @media screen and (max-width: 767px) {
        .rl-visible {
            display: none;
        }
    
        .rl-hidden {
            display: block;
        }
    }
    

/*------------------------------------
        	$Font Face
------------------------------------*/
/*----- font face -----*/






/*------------------------------------
          $Animation Effect
------------------------------------*/
	/*-----smooth transition-----*/
    .transition{
        -webkit-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
                -o-transition: all 0.4s ease;
                    transition: all 0.4s ease;
    }





/*------------------------------------
                $space
------------------------------------*/
    /*----- 80px -----*/
    .rl-row-80{
        padding-top: calc( 32px + 2.5vw ); 
        padding-bottom: calc( 32px + 2.5vw );         
    }

    .rl-row-top-80{ 
        padding-top: calc( 32px + 2.5vw ); 
        padding-bottom: 0; 
    }

    .rl-row-bottom-80{
        padding-top: 0; 
        padding-bottom: calc( 32px + 2.5vw );         
    }

    /*----- 60px -----*/
    .rl-row-60{
        padding-top: calc( 24px + 1.875vw ); 
        padding-bottom: calc( 24px + 1.875vw );         
    }
    .rl-row-top-60{ 
        padding-top: calc( 24px + 1.875vw ); 
        padding-bottom: 0; 
    }
    .rl-row-bottom-60{
        padding-top: 0; 
        padding-bottom: calc( 24px + 1.875vw );         
    }

    /*----- 50 px -----*/
    .rl-row-50{
        padding-top: calc( 14px + 1.875vw ); 
        padding-bottom: calc( 14px + 1.875vw );         
    }
    .rl-row-top-50{ 
        padding-top: calc( 14px + 1.875vw ); 
        padding-bottom: 0; 
    }
    .rl-row-bottom-50{
        padding-top: 0; 
        padding-bottom: calc( 14px + 1.875vw );         
    }

    /*----- 40 px -----*/
    .rl-row-40{
        padding-top: calc( 16px + 1.25vw ); 
        padding-bottom: calc( 16px + 1.25vw );         
    }
    .rl-row-top-40{ 
        padding-top: calc( 16px + 1.25vw ); 
        padding-bottom: 0; 
    }
    .rl-row-bottom-40{
        padding-top: 0; 
        padding-bottom: calc( 16px + 1.25vw );         
    }

    /*----- 20 px ----- */

    .rl-row-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
  
    .rl-row-top-20 {
        padding-top: 20px;
        padding-bottom: 0;
    }
  
    .rl-row-bottom-20 {
        padding-top: 0;
        padding-bottom: 20px;
    }

    /*----- 10 px ----- */

    .rl-row-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .rl-row-top-10 {
        padding-top: 10px;
        padding-bottom: 0;
    }

    .rl-row-bottom-10 {
        padding-top: 0;
        padding-bottom: 10px;
    }

/*------------------------------------
        	$Play button
------------------------------------*/
.rl-rel2{ position: relative; display: block;}
    .rl-play-wrapper2{
        position:absolute;
        top:50%;
        left:50%;
        width:calc( 55px + 2.5vw );
	    height: calc( 55px + 2.5vw );
        border-radius: 50%;
        margin: calc( (( 55px + 2.5vw) / 2) * (-1) ) 0 0 calc( (( 55px + 2.5vw) / 2) * (-1) );
        background: rgba(255,255,255,0.4);
        -webkit-transition:
                    background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
                    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition:
                    background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
                    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition:
                    background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
                    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
        .rl-rel2:hover .rl-play-wrapper2{
            background: rgba(255,255,255,0.6);
            -webkit-transform: scale(1.05, 1.05);
            -moz-transform: scale(1.05, 1.05);
            -ms-transform: scale(1.05, 1.05);
            -o-transform: scale(1.05, 1.05);
            transform: scale(1.05, 1.05);

        }

        .rl-play2{
            width: 0;
            height: 0;
            border-style: solid;
            border-width: calc( 8px + 0.625vw ) 0 calc( 8px + 0.625vw ) calc( 12px + 0.9375vw );
            border-color: transparent transparent transparent rgba(255,255,255,1);
            margin-left: calc( 2.8px + 0.375vw );
        }



/*------------------------------------
                playbutton
------------------------------------*/

.rl-play-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(55px + 2.5vw);
    height: calc(55px + 2.5vw);
    border-radius: 50%;
    margin: calc( (( 55px + 2.5vw) / 2) * (-1)) 0 0 calc( (( 55px + 2.5vw) / 2) * (-1));
    border: 3px solid #e4e4e4;
    background: #0009;
/*     
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(55px + 2.5vw);
    height: calc(55px + 2.5vw);
    border-radius: 50%;
    margin: auto;
    background: rgba(255, 255, 255, 0.5); */
    -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.rl-rel:hover .rl-play-wrapper {
    /* background: rgba(255, 255, 255, 0.6); */
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.rl-play-wrapper.right-bottom {
    right: calc(20px + 2vw);
    bottom: calc(10px + 2vw);
    left: auto;
    top: auto;
}

.rl-play-wrapper.right-bottom.small {
    right: 20px;
    bottom: 20px;
    width: calc(60px + 1vw);
    height: calc(60px + 1vw);
}

.rl-play {

    width: 0;
    height: 0;
    border-top: solid calc(0.625vw + 8px) transparent;
    border-right: solid 0px transparent;
    border-bottom: solid calc(0.625vw + 8px) transparent;
    border-left: solid calc(0.9375vw + 12px) #fff;
    margin-left: 7px;
}


/*------------------------------------
    		$Animation
------------------------------------*/
.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
	@-webkit-keyframes slideInUp {
	  from {
	    -webkit-transform: translate3d(0, 100%, 0);
	    transform: translate3d(0, 100%, 0);
	    visibility: visible;
	  }

	  to {
	    -webkit-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	  }
	}

	@keyframes slideInUp {
	  from {
	    -webkit-transform: translate3d(0, 100%, 0);
	    transform: translate3d(0, 100%, 0);
	    visibility: visible;
	  }

	  to {
	    -webkit-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	  }
	}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}


/*------------------------------------
      $limited-line-block
------------------------------------*/
.limited-line-block {
    overflow: hidden;
    position: relative; 
    line-height: 1.5em;
    max-height: 7.5em; 
    text-align: justify;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .limited-line-block:before {
    content: '...\00a0More';
    position: absolute;
    right: 0;
    bottom: 0;
    color: #ffa105;
    background: white;
    pointer-events: auto;
    text-decoration: underline;
  }
  
  .limited-line-block:after {
    content: '';
    position: absolute;
    right: 0;
    width: 60px;
    height: 1.5em;
    background: white;
  }
  
  .theme-defulat .theme-price {
    font-size: calc(1.125vw + 20.4px);
    line-height: 1;
    }

    /* .rl-fontweight-medium {
        font-weight: 500;
    }

    .rl-fontweight-medium {
        font-weight: 500;
    }
    .rl-btn-width120 {
        min-width: 120px;
    }
    .rl-btn-sm {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    } */
    .pack-data .price-area ._icontent_buylink .buy-button {
        font-size: calc(16px + 0.021vw);
        width: calc(30px + 5vw);
        min-width: 120px;
        padding: 9px 12px;
        line-height: 1.42857143;
        vertical-align: middle;
    }
    .pack-data .price-area ._export_buylink .buy-button {
        font-size: calc(16px + 0.021vw);
        width: calc(30px + 5vw);
        min-width: 120px;
        padding: 9px 12px;
        line-height: 1.42857143;
        vertical-align: middle;
    }
    .rl-btn {
        font-size: 18px;
        min-width: 120px;
        padding: 9px 12px;
        line-height: 1.42857143;
        vertical-align: middle;
    }
    .banner .pack-data .price-area .saleprice{
        font-size: calc(1.125vw + 20.4px);
        line-height: 1;
    }
    .banner .pack-data .price-area .saleprice{
        font-size: calc(1.125vw + 20.4px);
        line-height: 1;
    }


/*------------------------------------
           $Magnific Dialog
------------------------------------*/
.magnific-dialog {
    position: relative;
    margin: auto;
    padding: 25px 20px 30px;
    width: fit-content;
    width: -moz-fit-content;
    max-width: 100%;
    background-color: #ffffff;
}

.magnific-dialog .title {
    padding: 15px 15px 10px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1;
    color: #303133;
}

.magnific-dialog .content {
    padding: 10px calc(0.625vw + 22px); /*1920~320 34~24px*/
    font-weight: 300;
    color: #555;
    font-size: calc(0.125vw + 13.6px);
    line-height: 30px;
}

.magnific-dialog .btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.magnific-dialog .btns button {
    margin: 5px;
    padding: 0 15px;
    border-radius: unset;
    border: 1px solid #ff9f01;
    background-color: #ffffff;
    color: #ff9f01;
    white-space: normal;
    text-align: center;
    line-height: 40px;
    font-size: calc(0.125vw + 13.6px); /*1920~320 16~14px*/
    font-weight: inherit;
    outline: none;
}

.magnific-dialog .btns button:focus {
    outline: none;
}

.magnific-dialog .btns button:hover {
    background-color: #ddd;
}

.magnific-dialog .btns button.primary {
    background-color: #ff9f01;
    color: #ffffff;
}

.magnific-dialog .btns button.primary:hover {
    border: 1px solid #d88702;
    background-color: #d88702;
}

/* terms-and-condition */
.terms-and-condition { 
    position: relative;
    margin: 0 auto;
    padding: 25px 50px;
    border-radius: 15px;
    width: 90%;
    max-height: 90vh;
    max-width: 900px;
    background-color: #ffffff;
    color: #666666;
    font-size: 14px;
    overflow-y: auto;
}

.terms-and-condition .mfp-close {
    top: 10px;
    right: 10px;
    color: #666666;
    font-weight: 300;
}

.terms-and-condition h2.title {
    margin-top: 30px;
    margin-bottom: 40px;
    color: var(--terms-and-condition-main-color);
    text-align: center;
    font-family: Oswald;
    font-size: 28px;
    font-weight: 700;
}

.terms-and-condition .name {
    font-size: calc(15.6px + 0.125vw);
    font-weight: bold;
    color: var(--terms-and-condition-main-color);
}

.terms-and-condition__content {
    margin-top: 20px;
    margin-bottom: 30px;
    max-height: 460px;
    padding-right: 30px;
    overflow-y: auto;
}

.terms-and-condition__content a {
    color: var(--terms-and-condition-main-color);
}

.terms-and-condition__content::-webkit-scrollbar {
    width: 6px;
}

.terms-and-condition__content::-webkit-scrollbar-button {
    height: 0;
    background: transparent;
}

.terms-and-condition__content::-webkit-scrollbar-track-piece {
    background: transparent;
}

.terms-and-condition__content::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--terms-and-condition-main-color);
}

.terms-and-condition__content::-webkit-scrollbar-track {
    background-color: var(--terms-and-condition-main-color);
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    background-clip: padding-box;
}

.terms-and-condition__content-inner ol {
    padding-left: 35px;
}

.terms-and-condition__content-inner ol li {
    margin-top: 5px;
}

/* terms-and-condition animate */
.mfp-zoom-in .terms-and-condition {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .terms-and-condition {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .terms-and-condition {
    transform: scale(0.8);
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

img[src*="loading.gif"] {
    max-width: 128px;
}

/*------------------------------------
        bg-video-container
------------------------------------*/
.bg-video-container {
    position: relative;
    padding-bottom: calc(100% * var(--video-aspect-ratio));
}

.bg-video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.bg-video-container__content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-video-container.bg-video-container--center-mode {
    height: var(--video-min-height);
    overflow: hidden;
}

.bg-video-container.bg-video-container--center-mode iframe {
    left: 50%;
    transform: translateX(-50%);
    min-width: var(--video-min-width);
    min-height: var(--video-min-height);
}

/*------------------------------------
            maphilight
------------------------------------*/
.iframe-image .image-map-wrapper {
    background: none !important;
}

/*------------------------------------
            $Media Query
------------------------------------*/
@media screen and (min-width: 1921px) {
    .banner-wrapper .arrow {
        width: 42px;
        height: 42px;
    }

    .banner-wrapper .arrow i.fa {
        font-size: 32px;
    }

    /*----- 80px -----*/
    .rl-row-80{
        padding-top: 80px;
        padding-bottom: 80px;
     }
 
     .rl-row-top-80{ 
         padding-top: 80px;
     }
 
     .rl-row-bottom-80{
         padding-bottom: 80px;
     }
 
     /*----- 60px -----*/
     .rl-row-60{
         padding-top: 60px;
         padding-bottom: 60px;
     }
     .rl-row-top-60{ 
         padding-top: 60px;
     }
     
     .rl-row-bottom-60{
         padding-bottom: 60px;
     }
 
     /*----- 50 px -----*/
     .rl-row-50{
         padding-top: 50px;
         padding-bottom: 50px;
     }
 
     .rl-row-top-50{ 
         padding-top: 50px;
     }
 
     .rl-row-bottom-50{
         padding-bottom: 50px;
     }
 
     /*----- 40 px -----*/
     .rl-row-40{
         padding-top: 40px;
         padding-bottom: 40px;
     }
 
     .rl-row-top-40{ 
         padding-top: 40px;
     }
 
     .rl-row-bottom-40{
         padding-bottom: 40px;
     }
}

@media screen and ( max-width: 1440px ){
    /*----- Layout -----*/
    .rl-row-1440{ margin: 0 4.17%; }
    .rl-row-1540{ margin: 0 4.17%; }
    .pack-data .price-area ._icontent_buylink .buy-button {
        font-size: calc(14px + 0.021vw);
        width: calc(30px + 5vw);
        min-width: 110px;
    }
    .pack-data .price-area ._export_buylink .buy-button {
        font-size: calc(14px + 0.021vw);
        width: calc(30px + 5vw);
        min-width: 110px;
    }
}

@media screen and ( max-width: 991px ){
	/*------------------------------------
                $General
    ------------------------------------*/
    /*----- Layout -----*/
    .rl-row-1440{
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 auto;
    }
    .rl-row-1540{
        padding-right: 15px;
        padding-left: 15px;
        margin: 0 auto;
    }

    /*----- sub-topbar -----*/
	.sub-topbar{ 
		-webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .pack-data1440 .col-sm-offset-2 .price-area ._icontent_buylink .buy-button {
        font-size: 18px;
        width: calc(32px + 5vw);
        min-width: 130px;
        padding: 9px 12px;
        line-height: 1.42857143;
        vertical-align: middle;
    }
    .pack-data1440 .col-sm-offset-2 .price-area ._export_buylink .buy-button {
        font-size: 18px;
        width: calc(32px + 5vw);
        min-width: 130px;
        padding: 9px 12px;
        line-height: 1.42857143;
        vertical-align: middle;
    }

}

@media screen and ( max-width: 767px ){
	/*------------------------------------
                $General
    ------------------------------------*/
    /*----- sub-topbar -----*/
	/*.dropdown-mobile{
		background-color: #a0a0a0;
	}
	.dropdown-mobile li{ display: block; }
		.dropdown-mobile li a{ 
			color: #fff; 
			padding-top: 10px; 
			padding-bottom: 10px; 
		}
		.dropdown-mobile li a:hover,.dropdown-mobile li a:visited{ text-decoration: underline; }*/

       
    /*------------------------------------
              $Magnific Dialog
    ------------------------------------*/
    .magnific-dialog .btns button {
        width: 100%;
    }
}

@media screen and ( max-width: 600px ){
	/*------------------------------------
                $General
    ------------------------------------*/
	
	/*------------------------------------
        	$Common Module
	------------------------------------*/
	/*----- sub-topbar -----*/
	/*.sub-topbar li,
	.sub-topbar li a{ width: 100%; }
	.sub-topbar .dropdown-menu{ position: relative; }

	.dropdown .dropdown-menu {
	    max-height: 0;
	    display: block;
	    overflow: hidden;
	    opacity: 0;
	    padding: 0;
	    -webkit-transition: all 0.4s ease;
	    	-ms-transition: all 0.4s ease;
	    	-moz-transition: all 0.4s ease;
	    		-o-transition: all 0.4s ease;
	    			transition: all 0.4s ease;
	}
	.open .dropdown-menu {
	    max-height: 350px;
	    opacity: 1;
	    padding-bottom: 15px;
	}
	
	.navgation-wrapper{
		-webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
	}
	.navgation{ 
		padding-left: 0; 
		text-align: center;
		margin-top: 20px;
		width: 100%; 
	}*/
}

@media screen and ( max-width: 500px ){
	/*------------------------------------
            	$General
	------------------------------------*/
	
}