.InfoModalMaster {
    position: relative;
    z-index: 1;
}

.InfoModalMaster__IconTrigger {
	display: flex;
    position: absolute;
    top: 0;
    transform: translate(0,80%) rotate(90deg);
}

.InfoModalMaster__IconTriggerClose,
.InfoModalMaster__IconTrigger {
	background-color: #6B26BA;
	width: 31px;
	height: 31px;
}
 
.InfoModalMaster__Container {
	position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 100;
    box-shadow: 0px -15px 15px 0px rgb(0, 0, 0, .16);
    padding: 0;

	display: none;    
	align-items: center;
	justify-content: center; 
	width: 100%;
}

.InfoModalMaster__Container.is-active {
	display: flex;
}

.InfoModalMaster__Wrapper {
	width: 100%;
	height: 100%;
	background-color: #fff;  
	padding: 2.5rem;
}
 
.InfoModalMaster__Content {
    overflow-x: hidden;
}

.InfoModalMaster__Content > * {
	display: flex;
	flex-direction: column;
}