/*------------------------general browser settings ------------------------*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@font-face {
    font-family: tt_font1;
    src: url(app_assets/aldrich.ttf);
}
body {
    margin: 0px;
    background-color:white;
}


input {
    width:100%; height:100%;
    padding: none;
    border: none;
}
/*----------*/


/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d2d2d2;  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*-------------------------application elements----------------------------*/
/*
 * This is kamil collection and more terminial
 * This is all collection 
 * 
 * 
 * 
 * 
/*load progress*/
.tt_loading {
    position:absolute;left: calc(50% - 60px);top: calc(40% - 60px); width: 120px; height: 120px;
    z-index: 21;
    display: none;
}
.tt_loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #c0a76d;
    border-bottom: 16px solid rgb(0, 0, 0);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/*message and dialog box */
.msg_box {
    position: absolute; top: 25%;left: 10%; width: 80%; height: 50%; box-shadow:  0px 0px 10px 1px #000000;
    background-color: #f0f0f0; border-radius: 3px;
    z-index: 20;
    display: none;
}
.msg_txt {
    position: absolute; top: 40%; width: 100%; text-align: center;font-family: Arial, Helvetica, sans-serif;
    padding: 20px;  -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dlg_box {
    position: absolute;  top: 25%; left: 10%; width: 80%; height: 50%;box-shadow:  0px 0px 10px 1px #000000;
    background-color: #f0f0f0; border-radius: 3px;
    z-index: 20;
    display: none;
}
.dlg_txt {
    position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 80%; height: 50%;font-family: Arial, Helvetica, sans-serif;
    margin: auto; text-align: center;
    font-size: 12px;
}
.msg_okbtn {
    position: absolute; top: 80%; width: 100%; height: 20%; text-align: center; font-weight: bolder;
    z-index: 2; font-size: 20px;
    color: #000000;
    text-decoration: underline;
}
.r_micon {
    position: absolute;
    top: 10px;
    left: 10px;
    display: none;
    z-index: 12;
}
.r_miconl {
    background-color: #000000;
    width: 35px;
    height: 5px;
    margin: 6px;
}
.r_cbtn { /*close button*/
    position: absolute;
    top: 8px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: none;
    z-index: 11;
}

/*application body*/
.tt_body {
    position: absolute; left:0px; top:0px; width: 100%; height: 100%; overflow:hidden;
    /*font-family: Arial, Helvetica, sans-serif;
    /*pointer-events:none;*/
    opacity: 1; background-color:#f1f1f1;
}

.bd_container{
    position:relative;
    top: 65px;
}
/*general page */
.tt_page{
    position:absolute; left:-100%; top:0px; width:100%; height:100%;
    background-color:#FFF;
    overflow-y:scroll;
    z-index:2;
    transition: 0.5s;
}
/*header place holder*/
.hp_holder { background:white; z-index:500; position:fixed; width: 100%; height: 60px; text-align: center; line-height: 60px; font-weight: bold; font-size:15px; font-family: Arial, Helvetica, sans-serif;   box-shadow: 0 4px 2px -2px rgba(0,0,0,.2); }

/*paragraph*/
.tt_pgh { width: 100%; height: auto; padding:2%;}

.tt_imgw100xa {
    width: calc(100% - 1px);
    height: auto;
}
.ttmnu_list { /* fixed height */
    width: 100%;
    height: 75px;
    background-color: #ffffff;
    padding: 15px 5px;
    text-align: left;
    border-bottom: solid #cacaca 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 25px;
}

.tt_listah { /* auto height */
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    text-align: left;
    border-bottom: solid #cacaca 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 25px;
}

/*tt_card*/
.tt_card50x100 {
    width: 50%; height: 100%;
    float: left;
}
.tt_card300xa{
    width: 300px; height: auto;
}
.k_80xa { width: 80px; height: auto;}
.k_120x50 {width: 120px; height: 50px;}

/*display modes*/
.k_inlblock {display:inline-block;}


/*text elements*/
.tt_font1 {font-family: tt_font1;}
.tt_txt1 { font-family: tt_font1;	font-size: 18px; }
.tt_txt2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px;}
.tt_f28 { font-size: 28px;}
.tt_f20 { font-size: 20px;}

.k_txt10 { font-size: 10px;}
.k_txt24 { font-size: 24px;}

/*line height */
.k_lnh50 {line-height: 50px;}
.k_lnh30 {line-height: 30px;}
.k_lnh24 {line-height: 24px;}

/*text alignments */
.k_tal {text-align: left;}
.k_tar {text-align: right;}
.k_tac {text-align: center;}
.k_taj {text-align: justify;}


/*icons*/
.k_icon {width: 50px; height: 50px; overflow: hidden; color: rgb(0, 0, 0); cursor: pointer; stroke:#c0a76d;}
.k_iconwa {width: auto; height: 46px; overflow: hidden; color: white; cursor: pointer; stroke: white;}
.k_stroke1 {stroke:#c0a76d;}


/*other page elements*/


/*----------*/



























/* --------------------- common properties ---------------------------*/
/*background colors */
.k_bg1 { background-color: #c0a76d; }
.k_bg2 { background-color: #c0a76d; }
.k_bg3 { background-color: #fff; }
.k_bg4 { background-color: rgb(227, 228, 230); }
.k_bg5 { background-color: #c91212; }
.k_bgrre {background-color: #c0a76d; }

/*foreground colors*/
.k_fcolor1 { color: #0a363e; }
.k_fcolor2 { color: #c0a76d; }
.k_fcolor3 { color: #000000; }
.k_fcolor4 { color: #ffffff; }
.k_fcrre {color: #c0a76d; }

/*boarders*/
.k_brdr1 {border:solid #c0a76d 1px;}
.k_brdrr3 {border-radius: 3px;}
.k_brdrr7 {border-radius: 7px;}
.k_brdrrre {border:solid #c0a76d 1px;}
.k_brdrrre2 {border:solid #c7c7c7 1px;}
.k_brdr5 {border:solid #c0a76d 1px; }
.k_brdrr5 {border-radius:5px; }

/*paddings*/
.k_pad20 { padding: 20px;}
.k_pad16 { padding: 16px;}
.k_pad8 {padding: 8px;}



/*width and height*/
.w_100p { width: 100%;}
.w_90p { width: 90%;}
.w_80p { width: 80%;}
.w_50p {width: 50%;}
.w_40p {width: 40%;}
.w_100 {width: 100px;}
.w_40 {width: 40px;}
.h_50ph {height: 50vw;}
.h_40ph {height: 40vw;}
.w_auto {width: auto;}
.w_150 {width: 150px;}

.h_100p { height: 100%;}
.h_90p { height: 90%;}
.h_80p {height: 80%;}
.h_auto {height: auto;}
.h_60 {height: 60px;}
.h_100 {height: 100px;}
.h_120 { height: 120px;}
.h_26 {height: 26px;}
.h_40 {height: 40px; }

.w25p {width: 25%;}
.w_10p {width: 10%;}
.w_20p {width: 20%;}
.w_5p {width: 5%;}
.w50p {width: 50%;}
.w45p {width: 45%;}

/*alignments*/
.kp_r {position: relative;}
.kp_a {position: absolute;}
.txt_c { text-align: center;}

.k_ma {margin: auto;}
.k_mat10 { margin-top:10px;}
.k_mat30 { margin-top:30px;}
.k_mab10 {margin-bottom: 10px;}

.k_vhc {top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}
.k_vc {  -ms-transform: translateY(-50%); transform: translateY(-50%);}
.k_hc {  -ms-transform: translateX(-50%); transform: translateX(-50%); }
.k_floatl {float: left;}
/*top and left */
.k_btm20 {bottom: 20px;}
.k_lft50p {left: 50%;}

/*display*/
.tt_bk {display: block;}
.ovf_h {overflow:hidden;}
.k_dinbk { display: inline-block; }


/*zindex */
.kz_10 {z-index: 10;}



.btn_pay {
    background-color: #c0a76d;
    border: none;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}



/*--------------------------------mobile and small screens-----------------------------*/
@media (max-width: 820px){
    .tt_card50x100 {width: 100%; height: 50%;}
}

.k_heading_text{
    font-family: Arial, Helvetica, sans-serif
}


.main-container {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.title {
    font-size: 16px;
    font-weight: bold;
}

.toggle-button {
    padding: 5px 10px;
    background-color: #c0a76d;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}



#dropdown-content,#dropdown-content2, #dropdown-content3{
    display: none;
    padding: 10px;
    width: 100%;
    height: auto;
    overflow: auto;
    background-color: white;
}

#dropdown-content,#dropdown-content2,#dropdown-content3 p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

#dropdown-content,#dropdown-content2,#dropdown-content3 p:last-child {
    border-bottom: none;
}

.dropdown-content{
	display: none;
    padding: 10px !important;
    width: 100%;
    height: auto;
    overflow: auto !important;
    background-color: white;
}

.pdf-container {
    position: relative;
    padding-bottom: 75%; /* Adjust based on your PDF aspect ratio */
    height: 800px;
    overflow: hidden;
    max-width: 100%;
    background: #fff;
}

.pdf-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
}