/* **********************************************************************************************
 *   Original Name  : animation.css                                                             *
 *   Created on     : Feb 24, 2025, 7:14:13 PM                                                  *
 *   Author         : C. Thilakarathna (web: thilak.comkin.net, email:chamiya1977@gmail.com)    *
 *   Company        : Computer Kingdom.                                                         *
 *   Dependencies   : Must use with animation.js                                                *
 *   Copy Rights    : All Copy rights reserved by Computer Kingdom by CK Licence Agrement.      *
 *                  :  Please refere https://comkin.net/copyrights/CKL/                         *
 ************************************************************************************************/



        h1 {
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: 500;
            color: #444;
        }

        #comkin_frm_container {
            position: relative;
            display: inline-block;
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            max-width: 100%;
            overflow: hidden;
            border-radius: 8px;
        }

        canvas {
            background-color: #fafafa;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1 !important;
        }

        #comkin_frm_image {
            position: absolute;
            top: 0;
            left: 0;
            pointer-events: none;
            width: 100%;
            height: 100%;
        }

        #comkin_controls {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        input[type="file"] {
            margin-bottom: 20px;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f8f8f8;
            color: #333;
            cursor: pointer;
            max-width: 200px;
            margin: 0 auto;
            margin-bottom: 50px;
        }

        .slider-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            width: 100%;
        }

        #zoom-slider {
            width: 50%;
            margin: 0 15px;
        }

        .btn {
            margin: 10px;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 12px;
            background: #00aaff;
            color: white;
            max-width: 140px;
            vertical-align: top;

        }

        .btn:hover {
            background: #83e3bb9e !important;
            color:00ffff;
            font-weight: 600;
            border-color: blue  !important;
        }

        .btn:active {
            background: #00aaff;
        }

        .toggle-buttons {
            margin-bottom: 20px;
        }

        .toggle-buttons button {
            margin: 0 10px;
        }


        
        /* WhatsApp Branded Modal Styles */
        .modal-header {
            background-color: #25D366;
            /* WhatsApp green */
            color: white;
            border-bottom: none;
        }

        .modal-content {
            border-radius: 10px;
            border: 1px solid #25D366;
        }

        .modal-body {
            font-size: 1.2em;
        }

        .whatsapp-button {
            background-color: #25D366;
            color: white;
            font-weight: bold;
            font-size: 1.1em;
            padding: 10px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-button i {
            margin-right: 8px;
        }

        .whatsapp-button:hover {
            background-color: #1ebe5b;
            color: white;
        }

        .close {
            color: white;
            opacity: 1;
        }

        .close:hover {
            color: #ddd;
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            z-index: 1000;
        }

        .floating-whatsapp:hover {
            background-color: #1ebe5b;
            transform: translateY(-2px);
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
        }

        .notselected{
            border: 3px solid #fff;
            padding: 3px;            
            
        }
        
        .selected {
            border: 3px solid #fd0101;
            padding: 3px;
            /* background: #1ebe5b !important; */
        }
        .comkin_lang_bar{
            display: block;
            margin: 0 auto;
            font-size: 20px;
            max-width: 800px;
        }
        .comkin_lang_button{
            display: inline-block;
            margin: 20px;
            background: #00aaff;
            color: #ddd;
            padding: 5px 30px;
            border: 3px solid #1283e6;
            border-radius: 30px;
            width: 150px;
            align-content: center;
            font-weight: 800;
        }
        .comkin_lang_button:hover{
            background: #ff00ff;
            color: #fff;

        }

        .warning{
            color: #990000;
            font-size: 1em;
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
            padding: 30px 0px;
        }
        .more{
            color: #fff;
            font-size: .75em;
            cursor: pointer;
            font-weight: 800;
        }
        .logo_tile{
            text-decoration: underline;
        }


.blinking-text {
    animation: blink 2s linear infinite; /* Faster blinking (0.5s) */
    font-size: 24px;
    font-weight: bold;
    color: blue;
}
.thanks_message{
    display: none;
}
.download_button{
    margin: auto;
    border: 2px solid gray;
    padding: 5px 20px;
    border-radius: 10px;
    color: blue;
    background: #eee;
    cursor: pointer;
}
.download_button:hover{
    background: green;
    color:white;
    font-weight: bold;
}
#shareLink{
    font-size: 25px;
    width: 100%;
    padding: 5px 10px;
    color: #7b7b7b;
    border: 1px solid #939393;
    background: #efefef;
    border-radius: 5px;    
}
.social_share{
    color: #007bff;
    cursor: pointer;
    width: fit-content;
    margin: auto;    
}

.disdiv {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    background: #00aaff;
    color: white;
    max-width: 140px;
    cursor: not-allowed !important;
}

hr{
    color: gray;
    height: 20px;
    background: #32b3f2;
    border-radius: 10px;
    margin: 60px 0px;
}
.precent{
    
    background: #111;
    padding: 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;    
}
.register_block{
    background: #eaeaea;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid #bbb;  
    margin-bottom: 40px;
}
.n_button{
    cursor: not-allowed;
    color: #ffffff;
}

.tshirt, .payment, .login, .log_off, .register_me{
    cursor:pointer !important;
    color:#00e3ee;
}


.frame_head{
    border: 1px solid green;
    width: 100%;
    padding: 5px;
    background: white;
    border-radius: 20px;    
}
.login_button_set{
    
}
.login_button_set a{
    text-decoration: none !important;
}
.login_button_set div{
    text-decoration: none;
    text-align: center;
    margin: 20px;
    border: 1px solid black;
    padding: 20px;
    border-radius: 10px;
    color: #0af9f9;
    background: black;
    font-weight: bold;
    font-size: 25px;        
}
.notes{
    color: white;
    text-align: justify;
    font-size: 13px;
    margin-top:20px;
}
body{
    padding-top:0px;
}
.button_block table td{
    padding: 5px 10px;
}
.button_block table tr:nth-child(odd){
    background: #d9d9d9;
}
.button_block table tr:hover{
    background: #111;
    color: white;
}
.title_img_cont{
    display: inline-block;
    max-width: 20%;
    padding:10px;    
}
.title_head_block{
    display: inline;
    text-align: left;
    padding-left: 20px;
    padding-top: 30px;    
}
.sub_title_ctl{
    background: #f5f8ff;
    display: flex;
    margin-top: 0px;    
}
.hide{
    display: none;
}

        @media (max-width: 1000px) {
            .title_head_block{
                text-align: center;
                margin: auto;
                padding-bottom: 40px;
            }
            .title_img_cont{
                margin: auto;
            }
            .sub_title_ctl{
                display: block;
                text-align: center;
            }
            .page_title{
                font-size: 15px;
            }
        }
        @media (max-width: 600px) {
            #zoom-slider {
                width: 100%;
            }

            .toggle-buttons button {
                margin: 5px;
            }
        }
@keyframes blink {
    0%, 100% {
        color:blue;
    }
    50% {
        color:red;
    }
}

