/*
Theme Name: TTCMgroup Child
Author: Traders Trust
Template: TTCMgroup
Text Domain: hub-child
Tags: responsive, retina, rtl-language-support, blog, portfolio, custom-colors, live-editor
*/

/* Important Note Popup*/
.important-note {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.35);
    display: none;
    color:#495d71;
}
.important-note .title {
	color: #0a2f4c!important;
    font-size: 25px;
}
.important-note .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.important-note .content p{  
    color: #495d71;
    margin-bottom:10px!important;
}
.important-note .content label {
    cursor: pointer;
}
.important-note .content p:first-child {
    font-size: 25px;
}
.important-note .content p:not(:last-child) {
    padding-bottom: 2px;
    margin-bottom: 15px!important;
}
.important-note .content button {
    width: 100%;
    padding: 8px 0;
    border: 0;
   
    background-color: #0a2f4c;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
}
.important-note .content button.disabled {
    background-color: #0a2f4c;
    color: #fff;
    pointer-events: none;
    font-weight: 400;
}
/* Responsive Styles */
@media screen and (max-width: 576px){
.important-note .content {
    width: 90%!important;
}
}