.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(4px);
    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;
    height:96vh;
    max-height:600px;
    overflow:hidden;
    overflow-y:auto;
    z-index:1201;
    position: relative;
}

.tbModalWindow .tbModalCloseButton{
    position: absolute;
    top:0;
    right:0;
    width:35px;
    height:35px;
    padding:4px;
    color:#FFF;
    background-color: #dc1616;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

/* 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;
}
