.blinking {
            animation: blinkingText 1s infinite;
        }

        @@keyframes blinkingText {
            0% {
                color: #fff;
            }

            49% {
                color: #fff;
            }

            50% {
                color: #300a9d;
            }

            99% {
                color: #300a9d;
            }

            100% {
                color: #fff;
            }
        }

        .blinking-id {
            animation: blinkingid 1s infinite;
        }

        @@keyframes blinkingid {
            0% {
                color: #E91E63;
            }

            49% {
                color: #fff;
            }

            50% {
                color: #fff;
            }

            99% {
                color: #E91E63;
            }

            100% {
                color: #E91E63;
            }
        }

        .iframe-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
        }

            .iframe-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 95%;
                height: 100%;
            }

        #exchanger ul {
            list-style: none;
            position: absolute;
            right: -75px;
            transform: translate(0% -30%);
            z-index: 1000;
        }

        .cus-language ul {
            list-style: none;
            text-align: right;
        }

        .cus-language .list-item .active {
            background: #000066;
            color: #fff;
            border: 0;
        }

        .cus-language ul.list-item li {
            padding: 0.1rem;
            text-align: center;
            display: inline-block;
        }

            .cus-language ul.list-item li a {
                font-size: 13px;
                cursor: pointer;
                transition: all 0.3s linear;
            }
			 .img-modal .modal-dialog{
            max-width:800px !important;
        }
                .img-modal .modal-dialog li {
                    font-size: 14px;
                    padding: 0.2rem;
                } 
                .highlight-news h3 {
                    font-size: 17px !important;
                }
        .close {
            font-size: 60px;
            font-weight: bold;
            color: #E91E63;
            top: -30px;
            right: -15px;
            z-index: 1;
        }
        .inner-list {
            box-shadow: 0px 1px 10px 0px #ccc;
            padding: 0.3rem;
            margin-bottom:10px;
        }
		.blink{
	    background-color: #fff;
		padding: 0.1rem;	
		text-align: center;
		line-height: 30px;
		border:4px solid #223f73;
	}
	.blink span{
		font-size: 26px;
		color: #f00;
		font-weight:800;
		animation: blink 1s linear infinite;
	}
	@keyframes blink{
		0%{opacity: 0;}
		50%{opacity: .5;}
		100%{opacity: 1;}
	}
	.cus-test .main-text{
		font-size:24px !important;
	}