/*
 Theme Name:   Windowgenie Child
 Theme URI:    https://od-web.site
 Description:  Windowgenie child theme
 Author:       BoldThemes
 Author URI:   http://bold-themes.com
 Template:     konstrakt
 Version:      1.0.0
 Tags:         one-column, right-sidebar, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready
 Text Domain:  konstrakt-child
*/


/* Theme customization starts here
-------------------------------------------------------------- */

/** popup begin **/
.popup__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
}

.popup__bg.active {
    opacity: 1;
    pointer-events: all;
    transition: 0.5s all;
    z-index: 123456;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 400px;
    padding: 25px;
    transition: 0.5s all;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s all;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: transform .7s ease-in-out;
}
.close-popup:hover{
    opacity:0.8;
    transform: rotate(360deg);
}

@media(max-width:390px){
    .popup{
        width:330px;
    }
}

.btn-ls{
    position: relative;
top: -2px;
}
.btn-ls:hover{
    color: #fff!important;
}

/** popup end **/
/** table **/
.table-primary th,
.table-primary td{
	text-align: center !important;
}
.table-primary th:first-child,
.table-primary td:first-child {
    width: 40%;
}
/** table end **/
.steps-column .bt_bb_column_content {
	height: 100%;
}