.tbModalWindowContainer{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:1200;
}

.tbModalWindowContainer .tbModalDarkBg{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,0.75);
    backdrop-filter: blur(1px);
    z-index:1200;
}

.tbModalWindowContainerInner{
    position: fixed;
    display:flex;
    justify-content: center;
    align-items: center;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:1201;
}

.tbModalWindow{
    width:92%;
    max-width:800px;
    background-color:#FFF;
    border-radius:10px;
    min-height:100px;
    height:auto;
    /*max-height:96vh;*/
    max-height:600px;
    overflow:hidden;
    overflow-y:auto;
    z-index:1201;
    position: relative;
}

.tbModalWindow .tbModalCloseButton{
    position: absolute;
    top:10px;
    right:10px;
    width:30px;
    height:30px;
    padding:2px;
    color:#333;
    font-weight:bold;
    background-color: #f3f3f3;
    border:1px solid #e0e0e0;
    border-radius:5px;
    text-align: center;
}

.tbModalWindow .tbModalCloseButton:hover{
    background-color: #d3d3d3;
}

/* width */
.tbModalWindow::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.tbModalWindow::-webkit-scrollbar-track {
    background: #F3F3F3;
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
}

/* Handle */
.tbModalWindow::-webkit-scrollbar-thumb {
    background: rgba(148, 148, 148, 0.6);
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
}

/* Handle on hover */
.tbModalWindow::-webkit-scrollbar-thumb:hover {
  background: #888;
}
