a.terms-and-conditions:hover{
	cursor: pointer;
}

div#terms-and-conditions-window{
    position: fixed;
    width: 50vw;
    height: 80vh;
    top: 10vh; left: 25vw;
    background-color: white;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.116);
    display: flex;
    align-items: flex-end; justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    z-index: 855;
}

div#terms-and-conditions-window button{
	border: none;
	background-color: transparent;
	font-size: 2rem;
}

button#terms-and-conditions-window-close{
    position: absolute;
    right: 30px; top: 7px;   
    font-size: 1.8rem;
}

div#terms-and-conditions-window-content{
    padding: 0 40px 40px 40px;
    width: 100%;
    height: 90%;
    overflow-y: auto;
}

div#terms-and-conditions-window-content h3{
    margin: 20px 0 10px 0;
}

@media screen and (max-width:1024px){
    div#terms-and-conditions-window{
        width: 95vw; height: 95vh;
        left: 50vw; top: 50vh;
        transform: translate(-50%,-50%);
    }
}

@media screen and (max-height:600px){
    div#terms-and-conditions-window-content{
        height: 90%;
    }
}