#dsasec-container {
	margin-top: 30px;
	margin-bottom: 30px;
	max-width: 300px;
	min-width: 220px;
	padding: 15px 15px 0 15px;
	border-radius: 5px;
	border: 1px solid lightgray;
	display: grid;
	grid-template-columns: 32% 68%;
	grid-template-rows: 35px 35px 15px;
	justify-items: baseline;
	align-items: center;
	transition: background-color 2s;
}
.success-msg #toggler-wrapper .toggler{
	background-color: #31ad22 !important;
}

 #dsasec-container:hover {
	 border: 1px solid gray;
}
 #dsasec-container #toggler-wrapper {
	 position: relative;
	 grid-area: 1 / span 2 / span 1;
	 width: 80px;
	 display: grid;
	 grid-template-areas: "left right";
	 align-items: center;
}
 #dsasec-container #toggler-wrapper .toggler {
	 display: flex;
	 justify-content: center;
	 justify-items: center;
	 align-items: center;
	 width: 40px;
	 height: 35px;
	 padding: 2px;
	 background-color: #be0c1d;
}
 #dsasec-container #toggler-wrapper .toggler #dsasec-field {
	 z-index: 100 !important;
	 position: absolute;
	 width: 37px !important;
	 height: 25px !important;
	 cursor: grab !important;
	 border-radius: 15px !important;
	 background-color: white !important;
	 text-align: center !important;
	 font-family: initial !important;
	 font-size: 20px;
	 box-shadow: 0 0 3px gray !important;
	 outline: none !important;
	 border: none !important;
	 caret-color: #fffffa !important;
	 color: #be0c1d;
}
 #dsasec-container #toggler-wrapper #toggler-left {
	 grid-area: left;
	 border-top: 2px;
	 border-left: 2px;
	 border-bottom: 2px;
	 border-right: 0;
	 border-color: gray;
	 border-style: solid;
	 border-top-left-radius: 15px;
	 border-bottom-left-radius: 15px;
}
 #dsasec-container #toggler-wrapper #toggler-right {
	 border-top-right-radius: 15px;
	 border-bottom-right-radius: 15px;
	 grid-area: right;
	 border-top: 2px;
	 border-right: 2px;
	 border-bottom: 2px;
	 border-left: 0;
	 border-color: gray;
	 border-style: solid;
}
 #dsasec-container #dsasec-msg-box {
	 grid-area: 0.5 / span 2 / span 1;
	 font-size: 15px !important;
	 white-space: nowrap !important;
}
 #dsasec-container .dsasec-animate-msg-box {
	 left: 0;
	 font-size: medium;
	 animation: toggleme 1.2s linear infinite;
}
 @keyframes toggleme {
	 0% {
		 transform: translateX(0);
	}
	 30% {
		 transform: translateX(15px);
	}
	 70% {
		 transform: translateX(0);
	}
}
 #dsasec-container #dsasec-js-off {
	 grid-area: 3 / span 1/ span 2;
	 font-size: 1rem;
	 align-self: end;
	 color: #be0c1d;
}
 
#v-pot-err{
	background-color: pink;
	color: #be0c1d;
	padding: 15px;
	border-radius: 5px;
	margin-left: 20px;
	white-space: nowrap;
	position: relative;
	top: -25px;
	font-weight: bold;
}
