
        /* modal */
        .modal {
            height: 100vh;
            width: 360px;
            position: fixed;
            top: 50%;
            left: 50%;
			transform:translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

		.modal figure img {
            margin-bottom: 3rem;
        }


        .modal figure {
            display: flex;
            align-items: center;
            justify-content: center;
			flex-direction:column;
            margin-bottom: 3.5rem;
        }



        .modal figcaption h2 {
            font-size: 2.2rem;
            font-weight: bold;
			letter-spacing:-2px;
			color: #6e2a00;
			margin-bottom: 1.5rem;
        }

		.modal figcaption p{
			font-size: 1.4rem;
			color: #f98d23;
			letter-spacing:-2px;
			font-weight: 500;
			font-weight: bold;

		}

        .modal .link {
            cursor: pointer;
            width: 21rem;
            text-align: center;
            height: 4.2rem;
            line-height: 4.2rem;
            background: #fff;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            margin-bottom: 1rem;
			border-radius:45px;
        }

		.modal .link-a{
			 background:linear-gradient(45deg, #e89916, #ed5f18);
			 color: #fff;
		 }
		.modal .link-b{
			 background: #fff;
			 color: #000;
		 }
		.modal .link-c{
			 background: #fff;
			 color: #000;
		 }

        .loader_wrap {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            position: fixed;
            background: rgba(0, 0, 0, 0.5);
            display: none;
			
        }

        .loader {
            border: 7px solid #f3f3f3;
            border-top: 7px solid #3498db;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            animation: spin 2s linear infinite;
            position: absolute;
            top: 46%;
            left: 50%;
            transform: translate(-50%, -50%);
        }


		.loader_text{
            position: absolute;
            top: 53%;
			width: 100%;
			text-align: center;	
			color: #fff;
			font-size: 1.5rem;
		}


        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }