* {
    box-sizing: border-box;
}

html {
    font-family: Epilogue, serif;
    block-size: border-box;
}

body {
    margin: 0;
    /*background-color: #fffdf8;*/
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    /*background-image: url("../images/bgtile.jpg");
    background-repeat:repeat;*/
    overflow-x: hidden;
}

body a {    
    text-decoration:none;
    color: #4DA1D4;
}

body a:hover {    
    color: #5EBBF4;
    cursor: pointer;
}


@font-face {
    font-family: 'Epilogue';
    src: url(../fonts/Epilogue/Epilogue-VariableFont_wght.ttf);
    font-style: normal;
}

@font-face {
    font-family: 'Epilogue';
    src: url(../fonts/Epilogue/Epilogue-Italic-VariableFont_wght.ttf);
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf);
    font-style: italic;
}

@font-face {
    font-family: 'Notosans';
    src: url(../fonts/Notosans/NotoSansMalayalam-Regular.ttf);
    font-style: regular;
}

@font-face {
    font-family: 'Kaumudi';
    src: url(../fonts/Kaumudi/FML-TT-Kaumudi_Bold.ttf);
    font-style: bold;
}

@font-face {
    font-family: 'Manjari';
    src: url(../fonts/Manjari/Manjari-Regular.ttf);
    font-style: normal;
}

@font-face {
    font-family: 'Arima';
    src: url(../fonts/Arima/Arima.ttf);
    font-style: normal;
}

@font-face {
    font-family: 'Gayathri';
    src: url(../fonts/Gayathri/Gayathri-Bold.ttf);
    src: url(../fonts/Gayathri/Gayathri-Regular.ttf);
    src: url(../fonts/Gayathri/Gayathri-Thin.ttf);
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/Montserrat-ExtraBold.ttf);
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
    src: url(../fonts/Montserrat/Montserrat-Thin);
    font-style: normal;
}


.-headermenu {
    margin: 0px 16px 0px 16px;
    font-family: Montserrat;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.55px;
    text-align: center;
    font-weight: 300;
    color: #293253;

}

.-headermenu .menuactive {
    margin: 0px 16px 0px 16px;
    font-weight: 500;
    color: #67c176;
}


a:hover {
    color: #67c176;
}

.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }

.tuto-grid-container {
    width: 100%;
  display: grid;
  grid-template-areas:
    'header header header'
    'menu main main'
    'menu main main';
  grid-gap: 1px;
  padding: 2px;
      border: solid 2px #FFD55A;
      background-color: #FEFDF9;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 rgba(203, 196, 175, 0.39);
    
}

.tuto-grid-container > div {
  width: 100%;
  background-color: #FEFDF9;
  text-align: left;
  padding: 10px;
}

    .image-strip {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        border: 0px solid #ddd;
        padding: 10px;
        width: 90%;
        white-space: nowrap;
        border-radius: 0px;
        z-index: 100;
        overflow: visible;
    }
    .image-strip img {
        height: 60px;
        cursor: pointer;
        border-radius: 0px;
        transition: all 0.2s ease;
    }
    .image-strip img.selected {
        box-shadow: 0 0 0 4px #007BFF;
    }

    .image-wrapper {
    position: relative;
    display: inline-block;
}

.video-preview {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    aspect-ratio: auto; /* fallback; will be set dynamically in JS */
    height: 190px; /* base size */
    background: #000;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.image-wrapper:hover .video-preview {
    opacity: 1;
    transform: translateX(-50%) translateY(-14px);
}


.wm-wrapper {
    position: relative;
    display: inline-block;
}
.wm-wrapper:hover .video-preview {
    opacity: 1;
    transform: translateX(-50%) translateY(-14px);
}


.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customize-hr{
    border: none; 
    border-top: 2px dotted #94b8b8; 
    margin: 10px 0;
}

.watermark-preview {
    position: absolute;
    font-family: Epilogue;
    bottom: 110%; /* place just above the image */
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD55A;
    color: #6E654E;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 0px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 10;
}





.-processflow {
    align-content: center;
    margin: 0px 4px 0px 4px;
    font-family: Epilogue;
    font-size: 16px;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: -0.55px;
    text-align: center;
    font-weight: 300;
    color: #6D6757;
    background-color: #F1ECD7;
    padding: 8px 8px 8px 8px;
}

.-processflow .currentflow {
    margin: 0px 4px 0px 4px;
    font-weight: 600;
    background-color: #A4A098;
    padding: 8px 12px 8px 12px;
    color: #FFFBEF;
}

.processflowarrow {
    font-family: Epilogue;
    font-size: 16px;
    font-weight: 50;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -5px;
    text-align: center;
    color: #6D6757;
    cursor:none;
    margin: 0px 4px 0px 4px;
}

 #uploadBox {
    width: 300px;
    height: 300px;
    background: #fff;
    border: 2px dashed #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #uploadBox:hover {
    border-color: #999;
  }
  #uploadText, #spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #uploadText {
    text-align: center;
    color: #555;
    font-size: 16px;
    pointer-events: none;
  }
  #spinner {
    font-size: 24px;
    color: #555;
    display: none;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }
  #thumbGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 60px);
    gap: 6px;
    padding: 10px;
    justify-content: center;
    align-content: start;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  #thumbGrid img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeIn 0.4s ease forwards;
  }
  @keyframes fadeIn {
    to { opacity: 1; transform: scale(1); }
  }
  input[type="file"] { display: none; }
  #status {
    font-size: 14px;
    color: #444;
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
  }

.-title1 {
    align-content: center;
    width: 200px;
    font-family: Epilogue;
    font-size: 32px;
    font-weight: 400;
    font-stretch: normal;
    font-style: light;
    line-height: 10px;
    letter-spacing: -1.14px;
    color: #4157a1;
}
.-title1 .desc {
    width: 50px;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: -0.68px;
    color: #6d6757;
    overflow-wrap: break-word;
}

.description1 {
    font-family: Epilogue;
    font-size: 15px;
    font-weight: 300;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: -0.68px;
    color: #6d6757;
}

.textstyle1 {
    font-family: Montserrat;
    font-size: 28px;
    font-weight: 250;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.14px;
    text-align: center;
    color: #4157a1;
}

.textstyle2 {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.91px;
    text-align: center;
    color: #4157a1;
    margin-top: 8px;
    margin-bottom: 8px;
}

.price-digit {
    font-family: Montserrat;
    font-size: 24px;
    font-weight:600;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: -0.91px;
    text-align: center;
    color: #4157a1;
    margin-top: 8px;
    margin-bottom: 8px;
    color:#4B4B4B;
    font-weight:500;
    border:none;
    outline: none;
}

.price-digit::after {
    /*content: ".00"; /* The decimal part */
    font-size: 12px; /* Smaller font size for the decimal part */
    font-weight: 350;
    padding-left: 2px;
    vertical-align: super; /* Makes it look like a superscript */
    font-weight: normal; /* Optional: Adjust the weight if needed */
}

.main-box {
  display: flex;
  border-top: dashed 1px #979797;
}

.left-box {
  width: 70%;
  text-align: left;
}

.right-box {
  width: 30%;
}

.templatetitle {
    width: auto;
    font-family: Montserrat;
    font-size: 26px;
    font-weight:600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0px;
    text-align: left;
    color: #4157a1;
    margin-top: 8px;
    margin-bottom: 8px;
}


.templatedesc {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: -.2px;
    text-align: left;
    color: #666666;
}

.textstyle3 {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 380;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.33px;
    text-align: center;
    color: #6d6757;
}

.pagination-links {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.91px;
    text-align: center;
    color: #4157a1;
    width:auto;
    margin: auto;
    padding: 24px 12px 24px 12px;
}

.infopointslabel {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.20px;
    text-align: center;
    color: #4157a1;
    padding: 8px 0 8px 0;
}

.infopoints {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    line-height: 1.2;
    text-align: center;
    color: #666666;
    padding: 8px 0 8px 0;
}


.admintabledata {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.50px;
    text-align: left;
    color: #595959;
    padding: 10px 10px 10px 10px;
    margin: 10px 10px 10px 10px;
    overflow-x: auto;
    padding: 0px; 
    border: none;
    border-collapse: separate; 
    border-spacing: 0 10px;
    width: 700px;
}

.admintabledata tr {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); /* Adds shadow to each row */
    text-align: left;
    border-radius: 0px;
}


.admintabledata td, .admintabledata th {
    padding: 10px; /* Adjust as needed for inner spacing */
    border: none; /* Removes border around cells */
    text-align: left; /* Centers text horizontally */
    vertical-align: middle;
}

.scrollablemenu {
    max-height: 200px;
    //max-height: calc(1em * 3); 
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scrollable-list li {
    padding: 0.5em;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    }

.html5container {
   width: 50%;
   overflow: auto;       /* Needed with resize */
   padding: 10px;   
   font-family: Epilogue;
   font-size: 20px;
   font-weight: 450;
   font-stretch: normal;
   font-style: normal;
   line-height: normal;
   letter-spacing: -0.73px;
   color: #4157a1;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   -ms-transform: translate(-50%,-50%);
   text-align:center;   
   height: auto; 
}

.lottieitem {
   width: 300px;  
   text-align: center;
   margin: auto;      
}

.buttoncontainer {
  display: flex;
  flex-direction: column; 
  gap: 6px;           
}

.left, .right {
  flex: 1;  
  padding: 20px;
  box-sizing: border-box;
}


.pagetitlesmall {
    width:50%;
    margin:auto;
    text-align:center;
    height:20px;
    font-size:14px;
    font-weight:300;
    color:#979797;
}

.cost {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-align: center;
    color: #67C176;
    padding: 8px 0 8px 0;
}

.infopointslinksm {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.4px;
    text-align: center;
    color: #6d6757;
    padding: 8px 0 8px 0;
    transition: all .5s ease-in-out;
}

.infopointslinksm:hover{
    transform: translateX(+10px);
}

.textstyle4 {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 150;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.73px;
    color: #6d6757;
}

.textstyle5 {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.73px;
    color: #4157a1;
}

.heading1 {
    font-family: Montserrat;
    font-size: 48px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.70px;
    text-align: left;
    color: #73694C;
    padding: auto;
}

.heading2 {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 420;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.70px;
    text-align: left;
    color: #44599C;
    margin: 16px 0 16px 0;
}

.box-heading {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.30px;
    text-align: left;
    color: #44599C;
    padding: 8px 0 8px 0;
}

.box-content {
    font-family: Montserrat;
    width: auto;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.20px;
    text-align: left;
    color: #00394d;
    padding: 8px;
}

.box-content a {
  font-weight: 500;
  color: #6d6757;
}

.box-content a:hover {
  color: #6d6757;
}

.box-price {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.70px;
    text-align: left;
    color: #67C176;
    margin: 16px 0 16px 0;
    padding: 12px 0 12px 0;
}

.box-currency {
    vertical-align: super;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    position: relative; 
}

.cookie-permission {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  margin-left: 80px;
  background-color: #44599C;
  padding: 10px;
  transform: translateY(110%);
  transition: transform 0.3s ease-in-out;
  z-index: 10000;
  text-align: center;
  font-family: Montserrat;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.40px;
    text-align: center;
    color: #C7E7FF;

}

.left-div {
  flex-basis: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.right-div {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.inner-div {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cookie-permission--hide {
  transform: translateY(100);
}

.cookie-permission--show {
  transform: translateY(0);
}

.cookie-permission__button {
  width:150px;
  background-color: #FFD55A;
  color: #6D6757;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
}

.content1 {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.40px;
    text-align: center;
    color: #00394d;
    padding: 0 12px 0 12px;
}

.index-content {
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    text-align: center;
    color: #00394d;
}

.content-list-head-main {
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.40px;
    text-align: left;
}

.content-list-head {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.40px;
    text-align: left;
}


.content-bullet {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.40px;
    text-align: left;
}

.question1 {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.15px;
    text-align: center;
    color: #979797;
}

.policytext {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.20px;
    text-align: left;
    color: #6d6757;
    padding: 0 12px 0 12px;
}

.policytext a{
    color: aqua;
}

.-back-home {
    position: absolute;
    display: block;
    left: 10px;
    top: 10px;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.86px;
    text-align: left;
    color: #67c176;
    cursor: pointer;
    z-index: 10000;
    background-color: aqua;
}

.-text_arrow {
    width: 220px;
    font-family: Epilogue;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.86px;
    text-align: center;
    color: #67c176;
    text-decoration:none;
    padding: 6px 0 6px 0;
}

.-text_arrow a {
    text-decoration:none;
}

.-text_arrow a:hover {
    color: #82E793;
    text-decoration:none;
}

.-text_arrow .arrow {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -4px;
    margin: 0 8px 0px 8px;
    text-decoration:none;
}

.searchboxcontainer{
    width: 380px;
    height: 44px;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    color: #49453A;
    border: solid 2px #FFD55A;
    box-shadow: 4px 4px 12px rgba(203, 196, 175, 0.8);
    margin-top: auto;
    text-align: left;
}

.btnSearch {
    width:50px; 
    height:50px; 
    border:none; 
    cursor:pointer; 
    float:right; 
    margin-right: -10px;
    background-color: #FFBF70;
}

.floatingDiv {
    display: block;
}

.floatingDivButton {
    width: 240px;
    float: left;   
    cursor: pointer;
}

.bottomExtension {
    display: none;
    height: 100px;
}

.popup {
            display: none;
            width: 360px;
            height: 220px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #f9f9f9;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 0px;
            z-index: 10000;
            border: solid 1px #D6D6D6;
            box-shadow: 12px 12px 12px 2px rgba(0, 0, 0, 0.2);
            text-align: center;
         }

   .text-box-edit-close {
        position: absolute;
        top: 5px;
        right: 5px;
        cursor: pointer;
        z-index: 10001;
    }

    /* Styling for the overlay */
    .text-box-edit-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
        z-index: 9999; /* Higher z-index than the popup */
    }


.text-box-edit{
    margin-bottom: 6px;
    margin-top: 6px;
    width: 320px;
    height: 120px;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-style: normal;
    color: #49453A;
    border: solid 1px #c9bfa5;
    color: #49453A;
    padding: 4px 4px 4px 4px;
    border: solid 1px #D6D6D6;
    text-align: center;
    line-height: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    resize: none;
}

.text-box-edit-content{
    display: flex;
    flex-wrap: wrap;
    width: 320px;
    max-width: 320px;
    align-content: center;
    text-align: center;
    height: auto;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-style: normal;
    color: #49453A;
    border: solid 1px #c9bfa5;
    color: #49453A;
    padding: 8px 8px 8px 8px;
    border: solid 1px #D6D6D6;
    background-color: #ffffff;
    text-align: center;
    resize: none;
}

.text-box-edit-button{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    user-select: none;
  border: solid 2px #FFE9A7;
  display: block;
  padding: 8px 8px 8px 8px;
  width:auto;
  margin: 6px;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: #746E5C;
  cursor: pointer;
  background: #FFD55A;
  margin-right: 0px;
}

.single-input-box{
    margin-bottom: 6px;
    margin-top: 6px;
    width: 204px;
    height: 34px;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.2px;
    font-style: normal;
    color: #49453A;
    border: solid 1px #c9bfa5;
    color: #49453A;
    padding: 4px 4px 4px 4px;
    border: solid 1px #D6D6D6;
    border-radius: 8px;
}


.single-input-box-sm{
    /*border-radius: 8px;*/
    padding: 8px;
    width: 300px;
    font-size: 16px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    color: #49453A;
    border: solid 1px #CFCFCF;
    background-color: #ffffff;
    margin: 0px;
    box-shadow: 2px 2px 2px 2px rgba(203, 196, 175, 0.2);
}

.single-input-box-search{
    padding: 10px;
    width: 70%;
    font-size: 16px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    color: #979797;
    margin: 0px;
    outline: none;
    border: none;
}

.single-input-box-otp{
    text-align: center;
    width: 80px;
    height: 28px;
    font-family: Montserrat;
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    color: #49453A;
    border: solid 1px #c9bfa5;
    color: #49453A;
    padding: 22px 4px 16px 4px;
    border: solid 1px #D6D6D6;
}

.multi-input-box{
    left: 0px;
    top: 0px;
    height: 120px;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    font-stretch: normal;
    font-style: norml;
    border: solid 1px #c9bfa5;
    color: #49453A;
    padding: 4px 4px 4px 4px;
    border: solid 1px #D6D6D6;
    margin-top: 6px;
}

.single-column-form{
 display: inline-block;
 width: 480px;
}

.otp-container {
      display: flex;
      gap: 12px;
    }

    .otp-input {
      width: 55px;
      height: 65px;
      text-align: center;
      font-size: 28px;
      border: 2px solid #ccc;
      border-radius: 10px;
      outline: none;
      background: white;
      transition: 0.2s;
    }

    .otp-input:focus {
      border-color: #4A90E2;
      box-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
    }
    
.span-searchinput{
    display: flex;
    align-content: center;
    justify-content: center;
    vertical-align: middle;
    margin: 20px 0px 0px 0px; 
    width: 400px;
    height: 60px;
}

.inputboxlabel {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -.5px;
    color: #48537F;
    margin: 0 10px 0px 0;
}

.textholder{
    margin-left: 100px;
    align-content: center;
    text-align: center;
    position: relative;
    left: 0px;
    display:block;
    transition: .25s left;
    background-color: #fffdf7;
    margin-top: 20px;
    vertical-align: middle;
    width: fit-content;
    height: fit-content;
    border: solid 2px #e7dfcb;
    padding: 8px 8px 8px 8px;
    box-shadow: 4px 4px 0 0 rgba(203, 196, 175, 0.39);

    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out
}

.reporttext{
    font-family: sans-serif;
    color: #E56D6D;
    width: 400px; 
    text-align: center;  
    margin: auto; 
    margin-top: 12px; 
}
.reporttext a{
    color: #E56D6D;
    text-decoration: none;
}

.-singlecolumn{
    align-content: center;
    text-align: center;
    display:grid;
    position: relative;
    transition: .25s left;
    vertical-align: middle;
    width: 50%;
    height: auto;
    margin: 0px;
    padding: 1rem 2rem 1rem 2rem;
    max-width: 1400px;
}

.tooltip {
  z-index: 9000;
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  text-decoration: none;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: #C7E7FF;
  color: #435d70;
  text-align: center;
  border-radius: 6px;
  padding: 12px;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 170%;
  font-family: Epilogue;
  font-size: 13px;
  text-align: left;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-decoration: none;
  font-weight: 300;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 100%;
  margin-top: -5px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #C7E7FF transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  text-decoration: none;
}

.tooltip .tooltiptext {
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

.item-row{  
  width: 100%;
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-content: center;
  padding: 10px 10px 10px 10px;
  margin: auto;
}

.box-row{  
  width: 100%;
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-content: center;
}

.box-row-tutorials{  
  width: 100%;
  display: inline-block;
  justify-content: center;
  align-content: center;
  padding: 6px 6px 6px 6px;
}

.box-heading-tutorial {
    font-family: Epilogue;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.70px;
    text-align: left;
    color: #44599C;
    padding: 8px 0 8px 0;
}

.box-content-tutorial {
    font-family: Epilogue;
    width: auto;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: -0.20px;
    text-align: left;
    color: #6d6757;
    padding: 8px;
}

.item-block{
  display: inline-block;
  padding: 6px 6px 6px 6px;
  align-content:space-between;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.item-block-left{
  width: auto;
  height: auto;
  display: inline-block;
  text-align: left;
  margin: auto 6px;
}

.item-box{
  border: solid 2px #EBE9E9;
  display: inline-block;
  width: 200px;
  height: 280px;
  margin: 12px;
  padding: 8px;
  justify-content: center;
  align-content: center;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
  box-shadow: 6px 6px 0px rgba(203, 196, 175, 0.2);
}


.item-box:hover{
  background-color: #FFFDF6;
  border: solid 2px #EEC859; 
  box-shadow: 8px 8px 0px rgba(203, 196, 175, 0.2);
}

.item-box-tutorial{
  display: block;
  padding: 6px 6px 6px 6px;
  width: 100%;
  height: auto;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin: 20px 0px 20px 0px;
}

.item-box-pr{
  border: solid 6px #b8c1e0;
  display: inline-block;
  width: 260px;
  padding: 16px;
  margin: 12px;
  height:auto;
  text-align: center;
  background-color: #FEFDF9;
  min-height: 100px;
}

.item-box-pr-yellow{
  border: solid 6px #FFE392;
  display: inline-block;
  padding: 6px 6px 6px 6px;
  width: 260px;
  height: auto;
  padding: 16px;
  margin: 12px;
  justify-content: center;
  align-content: center;
  text-align: center;
  background-color: #FEFDF9;
}

.item-box-pr-gold{
  border: solid 6px #FFBF70;
  display: inline-block;
  padding: 6px 6px 6px 6px;
  width: 260px;
  height: auto;
  padding: 16px;
  margin: 12px;
  justify-content: center;
  align-content: center;
  text-align: center;
  background-color: #FEFDF9;
}

.svgbutton{
  color: #746E5C;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  margin: auto;
}

.svgbutton:hover{
    opacity: .8;
}

.normalurl{
  font-size: 13px;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.25s ease-in-out;
  margin: auto;
}

.normalurl:hover{
    opacity: .8;
}

.btn{
  font-family: Montserrat;
  display: inline-block;
  transition: background-color 0.3s ease;
  width: auto; 
  padding: 16px 16px 16px 16px;
  height: auto;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: #5C5748;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border:none;
  border-radius: 12px;
}

.btn-yellow{ background: #FFD55A; color: #6D6757;}
.btn-yellow:hover { background: #FFC826; }

.btn-blue{ background: #4DA1D4;color: #FFFFFF;}
.btn-blue:hover   { background: #2FA1E6; }

.btn-green{background: #67C176; color: #FFFFFF;}
.btn-green:hover  { background: #16a34a; }

.btn-gray{background: #4B4B4B;color: #EBE9E9;}
.btn-gray:hover    { background: #8D8D8D; }


.btn-small  { padding: 6px 16px; font-size: 12px; border-radius: 24px;}
.btn-medium { padding: 10px 20px; font-size: 14px; border-radius: 24px;}
.btn-large  { padding: 14px 28px; font-size: 20px; border-radius: 32px;}


.btn:hover {
  opacity: 0.9;
}

.btn-stripanim {
    color:#ffffff;
  background: repeating-linear-gradient(
    90deg,            /* stripes vertical */
    #4DA1D4 0 10px,   /* blue stripe */
    #54ADE3 10px 20px /* white stripe */
  );
  
  background-size: 40px 100%; /* one full stripe set */
  
  animation: moveStrips 2s linear infinite;
}


.hdn{
  font-family: Montserrat;
  display: block; 
  height: auto;
  justify-content: left;
  text-align: left;
  color: #121212;
  letter-spacing: -0.01em;
}

.hdn-small{ font-size: 14px; font-weight: 400;}
.hdn-medium{ font-size: 24px; font-weight: 500;}
.hdn-large{ font-size: 48px; font-weight: 500;}

.hdn-content{
  font-family: Montserrat;
  display: block; 
  height: auto;
  justify-content: left;
  text-align: left;
  color: #121212;
  letter-spacing: -0.01em;
  font-size: 16px;
  font-weight: 400;
}


@keyframes moveStrips {
  from { background-position: 0 0; }
  to   { background-position: 40px 0; } /* move right */
}

.landing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-row > :last-child {
  /*margin-left: auto;*/
}

.landing-service {
  background-image: url("image.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card {
  width: 240px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #fffff3;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

/* Text container */
.card-content {
  font-family: Montserrat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px;
  z-index: 2;
  color: #000000;
}

/* Heading */
.card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Description */
.card-content p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Image */
.card-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 65%;
  object-fit: cover;
}

.-multicolumn{
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-content: center;

    position: relative;
    transition: .25s left;
    vertical-align: middle;
    margin: auto;
    padding: 0 2rem;

}

.bottom-middle {
    font-family: Montserrat;
    display: inline-block;
    width: auto;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: -0.20px;
    color: #979797;
    bottom: 0;
    text-align: center;
    margin: 0px 0px 0px 0px;  
}

.iframeMain {
    width: 720px;
    height: 420px;
}

.all-rights {
    position: sticky;
    font-family: Montserrat;
    display: inline-block;
    width: auto;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: -0.20px;
    color: #979797;
    bottom: 0;
    text-align: right;
    margin: 0px 0px 0px 0px;  
    padding-right: 20px;
}

.-infoholder{
    font-family: Montserrat;
    text-align: left;
    display:grid;
    position: relative;
    transition: .25s left;
    vertical-align: middle;
    width: 480px;
    height: auto;
    margin: auto;
    margin-left: 10px;
    padding: 0 2rem;
    max-width: 380px;
}

.-infoholder a {
    color: #67c176;
    text-decoration: none;
}

.-infoholder .textlabel {
    font-family: Montserrat;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.20px;
    color: #918C7B;
    margin-bottom: 10px;
}

.-infoholder .inputboxlabel {
    text-align: left;
    font-family: Montserrat;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    color: #293253;
    background-color: aquamarine;
}

.pageOverlay{
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.9); /* Black background with opacity */
  z-index: 1000; /* Specify a stack order in case you're using a different order for other elements */
}

.pageOverlayText{
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 450;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.73px;
  color: #4157a1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.textarea{
    width: 300px;
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    color: #49453A;
    line-height: 1.5;
    border: solid 0px #c9bfa5;
    background-color: #fffdf7;
}

.textarealabel {
    width: 300px;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.59px;
    color: #293253;
    text-align: left;
}

.gifimg {
    opacity: 0.7;
}


#mediacontainer{
    width:100%;
    height:100%;
    position:relative;
    margin: auto;
}

.mediaholder{
    border:0px solid red;
    justify-content: center;
    align-content: center;
    width: 100%;
}


.middle{top:50%;margin-top: auto;/*half of the .box height*/}
.center{left:50%;margin-left: auto;/*half of the .box width*/}

.videopreview {
    display: block;
}



vid {
    display:contents;
    width: auto;
    height: auto;
    margin: auto;
    background-color: bisque;
    box-shadow: 0px 4px 4px 0 rgba(203, 196, 175, 1);
}



.rightcolumn {
    margin-left: 100px;
    display:contents;
    background color: brown;
    vertical-align:top;
    align-content: center;
    text-align: center;
}

.-selectable{
    padding: 6px 6px 6px 6px;
    border: 2px dashed blue;

}
.-selectable:hover {
    -webkit-animation: rotate 2s linear infinite;
    border: 2px dashed #FFD55A;
    padding: 6px 6px 6px 6px;
}

.flowholder {
    margin-top: 15px;
    margin-bottom: -60px;
    width: 100%;
    height: 10px;
    display:block;
    background-color: brown;
    vertical-align:top;
    align-content: center;
    text-align: center;
}

.contactform-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 65px;
  border: 3px solid #f1f1f1;
  z-index: 9;
  margin-bottom: 27px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
  transition: all .5s ease-in-out;
  z-index: 20000;
}

.contactform-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

.nav {
    position: sticky;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    top: 0;
    background-color: #FFFFFF;
    padding: 0.75rem;
    /*background-image: url("../images/bgtile-nv.jpg");
    background-repeat:repeat;*/
    z-index: 10000;
    height:80px;
}

.nav .content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.nav .content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /*background-image: url("../images/Divider.png");
    background-repeat: repeat;*/
}

.logo {
    width:180px;
    max-height: 60px;
}

.indexlogo {
    max-height: 60px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px; 
}

.backtoindex {
    max-height: 60px;
    margin-left: 30px;
    margin-top: 20px;
    width: 100%;
    /*text-align: left;*/
    z-index: 10000;
    transition: all .5s ease-in-out;
}

.backtoindex:hover{
    opacity: .8;
    transform: translateX(-10px);
}

.nav-links {
    display: flex;
    padding: 0 1rem 0 1rem;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    margin-top: 24px;
}

.nav-link {
    margin: 0;
    list-style-type: none;
}

.nav-link a {
    padding: 0 1rem 0 1rem;
    text-decoration: none;
    font-family: Montserrat;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.75px;
    text-align: center;
    font-weight: 500;
    color: #5E6C9E;
}

.nav-link a:hover {
    color: #67c176;
}

#overlay {
  position: fixed; 
  display: block; 
  width: 100%;
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 10000; 
  pointer-events: none;
}

#lottie-center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.bg-graphics-contact:before,
.bg-graphics-pricing:before,
.bg-graphics-download:before,
.bg-graphics-customize:before,
.bg-graphics-templates:before,
.bg-graphics-content:before,
.bg-graphics-fixed-page:before,
.bg-graphics:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 1000px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -100;
}
.bg-graphics-contact:after,
.bg-graphics-pricing:after,
.bg-graphics-download:after,
.bg-graphics-customize:after,
.bg-graphics-templates:after,
.bg-graphics-content:after,
.bg-graphics-fixed-page:after,
.bg-graphics:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 1000px;
    background-repeat: no-repeat;
    z-index: -10;
}

.bg-graphics:before{
    background-image: url("../images/bgs/pattern-1.svg");
}
.bg-graphics:after{
    background-image: url("../images/bgs/pattern-2.svg");
}
.bg-graphics-templates:before{
    background-image: url("../images/bgs/template-pattern-1.svg");
}
.bg-graphics-templates:after{
    background-image: url("../images/bgs/template-pattern-2.svg");
}
.bg-graphics-customize:before{
    background-image: url("../images/bgs/customize-pattern-1.svg");
}
.bg-graphics-customize:after{
    background-image: url("../images/bgs/customize-pattern-2.svg");
}
.bg-graphics-download:before{
    background-image: url("../images/bgs/download-pattern-1.svg");
}
.bg-graphics-download:after{
    background-image: url("../images/bgs/download-pattern-2.svg");
}
.bg-graphics-pricing:before{
    background-image: url("../images/bgs/pricing-pattern-1.svg");
}
.bg-graphics-pricing:after{
    background-image: url("../images/bgs/pricing-pattern-2.svg");
}
.bg-graphics-contact:before{
    background-image: url("../images/bgs/contact-pattern-1.svg");
}
.bg-graphics-contact:after{
    background-image: url("../images/bgs/contact-pattern-2.svg");
}
.bg-graphics-content:before{
    background-image: url("../images/bgs/content-pattern-1.svg");
}
.bg-graphics-content:after{
    background-image: url("../images/bgs/pattern-2.svg");
}
.bg-graphics-fixed-page:before{
    background-image: url("../images/bgs/fixed-page-1.svg");
}
.bg-graphics-fixed-page:after{
    background-image: url("../images/bgs/fixed-page-2.svg");
}

.flex-box {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    z-index: 1000;
}

.flex-box-anim {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    z-index: 1000;
    -webkit-animation: flex-box_an .8s ease-in-out;
    animation: flex-box_an .8s ease-in-out;
}

.smallcallout-outer{
    font-family: Montserrat;
    position: fixed; 
    left: 0;
    top: 0; 
    width:100%; 
    height: 100%; 
    background-color:rgba(242,242,242,0.9); 
    z-index: 10000; 
    text-align: center; 
    vertical-align: middle;
    border-radius: 12px;
}
.smallcallout-inner{
    font-family: Montserrat;
    position: relative; 
    width:380px;
    height:auto; 
    top:50%; 
    left:50%; 
    -ms-transform:translate(-50%, -50%); 
    transform:translate(-50%, -50%);  
    background-color:rgba(255,255,255);
    text-align: center; 
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1); 
    border: solid 1px #ffffff; 
    border-radius: 12px;
    padding:36px 36px 36px 36px;
}
.smallcallout-close{
    position: fixed; 
    width:30px;
    height:auto; 
    top:2px; 
    right: 2px;  
    color:#61a6bd; 
    padding: 4px;
    font-size : 18px;
    font-weight: 400; 
}

@-webkit-keyframes flex-box_an{
0% { transform: scale(.4); opacity: 0 }
30% {opacity: 0 }  
100% { transform: scale(1.0); opacity: 1 }
}

.flex-box-templates {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /*align-items: center;*/
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 1rem;
    flex-wrap:wrap;
    z-index: 1000; 
}

.flex-box-customize {
    padding: 0px 10px 10px 0;
    height:auto;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    /*align-items: center;*/
    width: 300px;
    max-width: 300px;
    flex-wrap: wrap;
    z-index: 1000;
}

.flex-box-landing {
    padding-top: 0rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    z-index: 1000;
}

.bottom-panel {
    display: inline;
    width: 57px;
    position: sticky;
    left:8px;
    bottom: 0;
    z-index: 999;
    cursor: pointer;
    padding-bottom: 8px;
}

.bottom-panel-icon {
    z-index: 10000;
    transition: all .5s ease-in-out;
}

.bottom-panel-icon:hover{
    opacity: .6;
    transform: translateX(+10px);
}

.video-holder {
  width: auto;
  border: solid 1px #EFE1B8;
  border-radius : 22px;
  padding: 12px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF; 
}

.video-overlay {
  z-index: 10001;
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background-color: #FFFFFF; 
}


.main-img {
 z-index: 1; 
 border-radius: 16px 16px 0 0;
 border: solid 1px #EFE1B8;
}

#wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 20%;
  left: 40%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: none;
  opacity: .8;
}


/*
.final-preview {
  width: 360px;
  height: 640px;
  overflow: hidden;
}
*/
.preview-video {
 z-index: 1; 
 border: solid 1px #EFE1B8;
 border-radius: 16px 16px 0 0;
    
}

.preview-image {
    display: block;
    z-index: 1; 
    border: solid 1px #EFE1B8;
    border-radius: 16px 16px 0 0;
}
    /*
  height: auto;
  display: block;
   background: url('01_template_bank/TMPT0019-WB-BirthdayWish/TMPT0019-WB-BirthdayWish.jpg') no-repeat;
    background-size: cover;

  z-index:-1;
}*/

/* dropdown for user login */
.dropdown-wrapper {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
    }

    .dropdown-wrapper:focus-within .dropdown-menu {
      display: block;
    }

    .user-button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      overflow: hidden;
      cursor: pointer;
    }

    .user-button img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 50px; /* below the button */
      right: 0;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      min-width: 160px;
      text-decoration: none;
      z-index: 100000;
           overflow-y: auto;
    }

    .dropdown-menu ul {
      list-style: none;
      margin: 0;
      padding: 10px 0;
    }

    .dropdown-menu li {
      padding: 10px 15px;
      cursor: pointer;
    }

    .dropdown-menu li:hover {
      background-color: #FFD55A;
    }

    /* Optional: hide menu when not focused */
    .dropdown-wrapper * {
      outline: none;
    }

.client-names-list {
    background-color:#D5EEFF;
    border: .25px solid #62BAEF;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: #6875A5;
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .client-names-list:hover {
    opacity: 0.6;
  }

.client-names-list-selected {
    background-color:#FFD55A;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: #6875A5;
    opacity: 1;
    transition: opacity 0.2s ease;
  }

/* end dropdown */

.php-container {
   display: flex;
   width: 95%;
   flex-direction: row;
   justify-content: center;
   align-items: center;
}

.php-item {
  justify-content: center;
  align-content: center;
  text-align: center;
  display: inline-block;
  margin: 0px 0px 0px 0px;
}
.php-set-div {
  display: table-cell;
}
.php-set-close {
  
  background-color: #ffebe6;
  color:mediumvioletred;
  justify-content: center;
  align-content: center;
  text-align: center;
  display: inline-block;
  width: 90%;
  margin: 1px 1px 8px 1px;
  font-weight: 150;
  font-size: 13px;
  cursor:pointer;
  height: 18px;
}
.php-set-labels {
  padding: 8px 6px 8px 6px;
  background-color: #FFE392;
  color:#997300;
  justify-content: center;
  align-content: center;
  text-align: center;
  display: inline-block;
  margin: 0px 1px 0px 1px;
  cursor:pointer;
}
.php-set-labels:hover{
  opacity: 0.7;
}


.php-set-title {
  padding:-10px 12px 0px 12px;
  margin:-10px 12px 0px 12px;
  color:#997300;
  justify-content: center;
  align-content: center;
  text-align: center;
  display: inline-block;
  cursor:auto;
  user-select: none;
  font-size: 72px;
  letter-spacing: -2px;
  font-weight: 200;
}


footer {
    position: relative;
    margin: 2rem auto 0;
    padding: 1.5rem;
    max-width: 500px;
    overflow: hidden;
    margin-top: auto;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 5px;
    background-image: url("../images/Divider.png");
    background-repeat: no-repeat;
}

footer .links {
    padding: 0;
    display: flex;
    margin: 0;
    list-style-type: none;
    justify-content: center;
}

footer .link a{
    padding: 0 1rem;
    text-decoration: none;
    font-family: Epilogue;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.55px;
    text-align: center;
    font-weight: 300;
    color: #293253;
}

footer .link a:hover {
    color: #67c176;
}


.blink {
  animation: blink-animation .25s infinite;
  background-color: #E56D6D;
  border: 1px solid #F8C6C6;
  box-shadow: 1px 1px 2px rgba(248, 198, 198, 0.342903);
  color: #FFEEEE;
  font-size: 14px;
  width:300px;
}

.blink:hover {
 background-color: #E56D6D;
 color: #FFEEEE;
}

@keyframes blink-animation {
  0% { opacity: 1; }
  50% { opacity: 0.5; } /* Adjust the opacity level to control the intensity of the blink */
  100% { opacity: 1; }
}


.error-text {
  font-size: 16px;
  color: #E53A3A;
  font-weight: 400;
  animation: blink-error 0.5s step-start 6 forwards, hide 0s 3s forwards;
}

@keyframes blink-error {
  50% {
    opacity: 0;
  }
}

@keyframes hide {
  to { visibility: hidden; }
}


/*///////////////  Mobile  /////////////////////////*/
@media (max-width: 767px) {
html, body { 
    max-width: 100%; overflow-x: hidden; 
    }
    
    .main-img {
        margin:0;
        border: solid 1px #EFE1B8;
        padding: 6px;
        width: 98%;
    }
.bg-graphics-content:before,
.bg-graphics-contact:before,
.bg-graphics-pricing:before,
.bg-graphics-download:before,
.bg-graphics-customize:before,
.bg-graphics-templates:before,
.bg-graphics:before {
    display: none;
}
.bg-graphics-content:after,
.bg-graphics-contact:after,
.bg-graphics-pricing:after,
.bg-graphics-download:after,
.bg-graphics-customize:after,
.bg-graphics-templates:after,
.bg-graphics:after {
    display: none;
}
    
.admintabledata {
    width: auto !important;
    table-layout: auto !important;
    word-break: break-word; 
    min-width: 300px; /* or the minimum width needed */
    margin: 10px;
  }

  .admintabledata td,
  .admintabledata th {
    padding: 6px 8px 6px 8px;
    font-size: 14px;
    word-break: break-word;    /* allows wrapping */
    white-space: normal;       /* allows wrapping */
    width: auto !important; 
    white-space: normal; 
    text-align: left;
  }

.html5container {
   font-size: 18px;  
   width: 80%;  
}

.lottieitem {
    height: auto;
}

    .buttoncontainer {
    flex-direction: column; 
  }

    
.pagetitlesmall {
    width:90%;
    }
    
      .cta {
    order: 1; /* Move this div to the bottom in mobile view */
  }
    
 .video-holder {
      display:inline-block;
      margin: 0px;
      border: solid 0px #EFE1B8;
      padding: 0px 0px 0px 0px;
      box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
      border-radius: 16px 16px 0 0;
    }
    
    .landing-row {
    flex-direction: column;
    align-items: center;
    }

    .landing-row > :last-child {
      margin-left: 0;
    }


    .item-box{
        width: 280px;
    }
    .mediaholder {
        padding: 0 2rem;
        width: 100%;
    }
    .search-grid {
        width: 100%;
        height: auto;
    }
    search-grid label{
        font-size: 10px;
    }
    .php-container {
        width: 95%;
    }
    .flex-box-multicolumn {
        padding-top: 4rem;
    }
    
    .flex-box {
        width: 100%;
    }
    
    .backtoindex {
    text-align: center;
    margin-left: 0px;
    }
  
    .formholder{
        width: auto;
        margin: auto;
    }
    
    .box-row{  
     flex-direction:column;
    }
    .heading1 {
    font-size: 26px;
    }
    .bg-graphics:before, .bg-graphics:after {
        content: none;
    }

    .nav .content {
        justify-content: center;
    }

    .nav-links {
        margin-top: 0.25rem;
    }

    .-singlecolumn{
        width:100%;
    }
    
  .searchboxcontainer{
      width:100%;
    }
    
  .bottom-panel {
    display: block;
    width: auto;
    position: relative;
    margin: auto;
    text-align: center;
    align-content: center;
    bottom: 0;
    left:0px;
    z-index: 999;
    cursor: pointer;
    padding: 0px 0px 0px 0px;
}
    
  .bottom-panel-icon {
    display: inline-block;
    margin: -6px;
    text-align: center;
    width: auto;
}
    
.bottom-panel-icon:hover{
    transform: translateY(-10px);
}
    
  .all-rights {
    position: relative;
    display: block;
    text-align: center;
    margin: auto;
    padding-right: 0; 
}

    .-infoholder {
        margin-top: 20px;
        padding: 0 1rem;
        text-align: left;
    }
    
    .preview-video {
        margin:0;
        border: solid 0px #EFE1B8;
        padding: 6px;
        width: 98%;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 12px;
}
    .preview-image {
        margin:0;
        border: solid 0px #EFE1B8;
        padding: 6px;
        width: 98%;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 12px;
}
.flex-box-templates {
    width:95%;
    }
    
   
.grid-container {
    width: 90%;
            }
    
.grid-container div {
  width: 160px;
  margin: 0 1 rem 1 rem 0;
  padding: 2px;
  text-align: center;
  align-content: center;
  box-shadow: 1px 1px 0 0 rgba(203, 196, 175, 0.39);
  border-radius: 24px;
}
    
.griddesc {
  width: 100%;
  font-size: 10px;
  font-weight: 200;
  line-height: .5 rem;
  letter-spacing: .1 rem;
}
    
.cookie-permission {
  width:80%;
  margin-left: 8px;
  margin-top: 20px;
    }
    
.cookie-permission {
  height:130px;
}
    
.preview-video {
  border: solid 0px #EFE1B8;
  padding: 0;
}
    
.left-box {
  width: 100%;
}

.right-box {
  width: 100%;
}

.floatingDiv {
    display: block;
    justify-content: left;
    align-items: left;
    background-color: rgba(255, 255, 255, 1);
    width:100%;
    text-align: left;
    position:fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
    
.floatingDivButton {
    margin-top: 4px;
    margin-bottom: 0px;
    width:240px;
    float: none;
    background-color: rgba(255, 255, 255, 1);
}
    
.bottomExtension {
    display: block;
    height: 75px;
}
    

 /* add new mobile view css here */
    
}



/*////////Template grid///////*/

.grid-container {
  justify-content: center;
  align-items: center;
  columns: 6 160px;
  column-gap: 1rem;
  margin: auto;
  text-align: center;
  justify-items: flex-start;
  align-items: flex-start;
  align-content: start;
  padding: 10px;
    /*
      display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
    */
}

.grid-container div {
  width: 160px;
  margin: 0 1.5rem 1.5rem 0;
  display: inline-block;
  width: 100%;
  border: solid 1px #EFE1B8;
  padding: 8px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #FFFFFF;
  transition: all 0.25s ease-in-out;
}

.grid-container div:hover img {
  opacity: 0.7;
  cursor: pointer;
}
.grid-container div:hover {
  /*border: solid 2px #FFD55A;*/
  cursor: pointer;
}

.grid-container div img {
  width: 100%;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.grid-container div p {
  margin: 3px 0;
  padding: 0;
  text-align: center;
  font-style: italic;
}

.grid-container label {
  margin: 1px 0;
  padding: 0;
  text-align: center;
  font-style: normal;
  font-kerning: auto;
}


.search-grid {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  text-align: center;
  justify-content: center;
  margin:auto;
  width: 80%;
}

.search-grid div {
  width: 150px;
  margin: 0 1.5rem 1.5rem 0;
  width: 100%;
  font-style: italic;
  border: solid 1px #EFE1B8;
  margin: auto;
  font-weight: 400;
  color: #67c176;
}

.search-grid label {
  display: inline-flex;
  border: solid 1px #EBE9E9;
  height: auto;
  font-size: 15px;
  font-style: normal;
  /*background-color: #F6F1DE;*/
  font-weight: 200;
  color: #4B4B4B;
  padding: 4px 4px 4px 4px;
  margin: 4px 4px 4px 4px;
  overflow: hidden;
  width:auto;
}

/*
.search-grid label:hover{
background-color: #F8E3A5;  
}
*/
.search-grid label a {
  color: #4B4B4B;
  text-decoration: none;
}


.search-grid label :hover {
  color:#67c176;
}

.searchitemsholder{
 
    background-size : auto;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0px;
    display: inline-block;
    width:auto;
    cursor: pointer;
}

}
.gridtags {
  display: inline-block;
  width: 100%;
  font-family: Montserrat;
  font-size: 10px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.15px;
  text-align: center;
  color: #383225;
  padding-top: 10px;
  width:auto;
}

.gridtitle {
  display: block;
  width: 100%;
  font-family: Montserrat;
  font-size: 13px;
  font-weight:500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.20px;
  text-align: center;
  color: #4157a1;
  margin: 28px 0px 20px 0px;
    padding-top: 10px;
  line-height: 18px;
}

.gridNav {
  display: inline-block;
  width: 100%;
  font-family: Montserrat;
  font-size: 16px;
  font-weight:300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.20px;
  text-align: center;
  color: #4157a1;
  margin: 8px 6px 8px 6px;
  padding: 16px 6px 16px 6px;
  line-height: 24px;
  width:auto;
  cursor:pointer;
}

.griddesc {
  display: inline-block;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: italic;
  letter-spacing: -0.65px;
  line-height: 1.2;
  text-align: left;
  color: #383225;
  vertical-align: middle;
  margin: 0px;
}

.gridimg {
  display: inline;
  text-align: justify;
  text-justify:auto;
  padding: 3px 0px 3px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

//*Loading... animation*/

.loading {
    margin: 20px;
    font-size: 36px;
    font-family: sans-serif;
}

.loading::after {
      display: inline-block;
      animation: dotty steps(1,end) 1s infinite;
      content: '';
    }
    
    @keyframes dotty {
        0%   { content: ''; }
        25%  { content: '.'; }
        50%  { content: '..'; }
        75%  { content: '...'; }
        100% { content: ''; }
    }

/*Shake//////////////*/

#costDiv {
}
.shake {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}
@keyframes shake {
   0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.hr1 {
    border: 1px dotted #979797;
    color: #979797; 
    height:1px;
}
.hr2 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(142, 155, 202, 0), rgba(142, 155, 202, 0.75), rgba(142, 155, 202, 0));
    margin-top: 12px;
    margin-bottom: 12px;
}

/*
.ui-datepicker-year, .ui-datepicker-calendar thead {
    display: none;
}
*/