:root {
		--darkblue: #0B2550;
		--blue: #246CE2;
		--cyan: #15499F;
	}

	.cc-form .kk-ins-one {
		display: flex;
		margin-top: 20px;
		flex-direction: column;
	}

	.cc-form .kk-ins-one input,
	.cc-form .kk-ins-one select {
		border: 1px solid var(--darkblue);
		line-height: 40px;
		height: 42px;
		box-sizing: border-box;
		margin-top: 10px;
	}

	.cc-form .kk-ins-flex {
		display: flex;
		margin-top: 20px;
		align-items: center;
		justify-content: space-between;
	}

	.cc-form .kk-ins-flex a,
	.cc-form .kk-ins-flex input[type="submit"] {
		width: calc(50% - 10px);
            height: 55px;
	}

	.cc-form .calc-h {
		font-size: 36px;
		font-weight: 500;
		font-family: 'Raleway', sans-serif;
		padding-left: 30px;
		cursor: pointer;
		align-items: center;
		min-height: 53px;
		line-height: 45px;
		display: flex;
	}

	.cc-form {
		margin: auto;
	}

	.cc-form table {
		border: 1px solid var(--darkblue);
		table-layout: fixed;
		width: 100%;
		margin-bottom: 20px;
		border-collapse: collapse;
	}

	.cc-form table th {
		font-weight: bold;
		padding: 5px;
		border: 1px solid var(--darkblue);
	}

	.cc-form table td {
		padding: 5px 10px;
		border: 1px solid var(--darkblue);
		text-align: left;
	}

	.cc-form table span {
		display: inline-flex;
		min-height: 30px;
		width: 100%;
		align-items: center;
	}

	.cc-form table span input {
		width: 100%;
	}

	.cc-form input[type="submit"] {
		border-radius: 4px;
		padding: 0 20px;
		line-height: 56px;
		box-sizing: border-box;
		display: inline-block;
		border: 0;
		cursor: pointer;
		transition: all 0.3s;
		font-size: 20px;
		font-weight: 400;
		font-family: 'Nunito', sans-serif;
		background: var(--cyan);
		border: 2px solid var(--cyan);
		color: #fff;
	}

	.cc-form input[type="submit"]:hover {
		background: var(--blue);
		border: 2px solid var(--blue);
	}

	.cc-form input[type="submit"]:active {
		background: var(--darkblue);
		border: 2px solid var(--darkblue);
	}

	.cc-form .btn {
		border-radius: 4px;
		padding: 0 20px;
		line-height: 56px;
		box-sizing: border-box;
		display: inline-block;
		border: 0;
		cursor: pointer;
		transition: all 0.3s;
		font-size: 20px;
		font-weight: 400;
		font-family: 'Nunito', sans-serif;
		text-align: center;
	}

	.cc-form .btn.z {
		background: transparent;
		border: 2px solid var(--cyan);
		color: var(--cyan);
	}

	.cc-form .btn.z:hover {
		background: transparent;
		border: 2px solid var(--blue);
		color: var(--blue);
	}

	.cc-form .disnone {
		display: none !important;
	}