.ck .ck-reset .ck-editor .ck-rounded-corners {
    height: 100vh;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    border-radius: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.ck-powered-by {
    display: none;
}
p.text-sm.text-gray-700.leading-5{  margin-top:10px;}
svg.w-5.h-5 { height: 25px; }
.err {
    color: red;
    font-size: 14px;
    padding-top: 6px;
}

.err {
	color: red;
	font-size: 14px;
	padding-top: 6px;
}

.success-msg {
	font-size: 1rem;
	margin: 20px;
	background-color: #aef1be;
	color: #155724;
	padding: 15px;
}